You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.8 KiB
44 lines
1.8 KiB
7 years ago
|
TEMPLATE = app
|
||
|
|
||
|
QT += core gui widgets mvvmwidgets mvvmdatasyncwidgets
|
||
|
|
||
|
TARGET = DataSyncSampleWidgets
|
||
|
|
||
|
HEADERS += \
|
||
|
samplewindow.h
|
||
|
|
||
|
SOURCES += \
|
||
|
main.cpp \
|
||
|
samplewindow.cpp
|
||
|
|
||
|
FORMS += \
|
||
|
samplewindow.ui
|
||
|
|
||
|
target.path = $$[QT_INSTALL_EXAMPLES]/mvvmdatasyncwidgets/$$TARGET
|
||
|
INSTALLS += target
|
||
|
|
||
|
#not found by linker?
|
||
|
linux:!android {
|
||
|
LIBS += -L$$OUT_PWD/../../../lib #required to make this the first place to search
|
||
|
LIBS += -L$$[QT_INSTALL_LIBS] -licudata
|
||
|
LIBS += -L$$[QT_INSTALL_LIBS] -licui18n
|
||
|
LIBS += -L$$[QT_INSTALL_LIBS] -licuuc
|
||
|
}
|
||
|
|
||
|
#add lib dir to rpath
|
||
|
mac: QMAKE_LFLAGS += '-Wl,-rpath,\'$$OUT_PWD/../../../lib\''
|
||
|
|
||
|
#link to core lib
|
||
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../mvvmdatasynccore/DataSyncSampleCore/release/ -lDataSyncSampleCore
|
||
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../mvvmdatasynccore/DataSyncSampleCore/debug/ -lDataSyncSampleCore
|
||
|
else:unix: LIBS += -L$$OUT_PWD/../../mvvmdatasynccore/DataSyncSampleCore/ -lDataSyncSampleCore
|
||
|
|
||
|
INCLUDEPATH += $$PWD/../../mvvmdatasynccore/DataSyncSampleCore
|
||
|
DEPENDPATH += $$PWD/../../mvvmdatasynccore/DataSyncSampleCore
|
||
|
|
||
|
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../mvvmdatasynccore/DataSyncSampleCore/release/libDataSyncSampleCore.a
|
||
|
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../mvvmdatasynccore/DataSyncSampleCore/debug/libDataSyncSampleCore.a
|
||
|
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../mvvmdatasynccore/DataSyncSampleCore/release/DataSyncSampleCore.lib
|
||
|
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../mvvmdatasynccore/DataSyncSampleCore/debug/DataSyncSampleCore.lib
|
||
|
else:unix: PRE_TARGETDEPS += $$OUT_PWD/../../mvvmdatasynccore/DataSyncSampleCore/libDataSyncSampleCore.a
|