first commit
This commit is contained in:
39
test/qxDllSample/exe/exe.pro
Normal file
39
test/qxDllSample/exe/exe.pro
Normal file
@@ -0,0 +1,39 @@
|
||||
include(../../../QxOrm.pri)
|
||||
|
||||
TEMPLATE = app
|
||||
DEFINES += _QX_BUILDING_EXE
|
||||
INCLUDEPATH += ../../../../QxOrm/include/
|
||||
DESTDIR = ../../../../QxOrm/test/_bin/
|
||||
|
||||
QT += gui
|
||||
greaterThan(QT_MAJOR_VERSION, 4) { QT += widgets }
|
||||
|
||||
!contains(DEFINES, _QX_NO_PRECOMPILED_HEADER) {
|
||||
PRECOMPILED_HEADER = ./include/precompiled.h
|
||||
} # !contains(DEFINES, _QX_NO_PRECOMPILED_HEADER)
|
||||
|
||||
macx:CONFIG-=app_bundle
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
TARGET = exed
|
||||
} else {
|
||||
TARGET = exe
|
||||
} # CONFIG(debug, debug|release)
|
||||
|
||||
LIBS += -L"../../../../QxOrm/lib"
|
||||
LIBS += -L"../../../../QxOrm/test/_bin"
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
LIBS += -l"QxOrmd"
|
||||
LIBS += -l"dll1d"
|
||||
LIBS += -l"dll2d"
|
||||
} else {
|
||||
LIBS += -l"QxOrm"
|
||||
LIBS += -l"dll1"
|
||||
LIBS += -l"dll2"
|
||||
} # CONFIG(debug, debug|release)
|
||||
|
||||
HEADERS += ./include/precompiled.h
|
||||
HEADERS += ./include/export.h
|
||||
|
||||
SOURCES += ./src/main.cpp
|
||||
Reference in New Issue
Block a user