first commit
This commit is contained in:
41
test/qxClientServer/qxServer/qxServer.pro
Normal file
41
test/qxClientServer/qxServer/qxServer.pro
Normal file
@@ -0,0 +1,41 @@
|
||||
include(../../../QxOrm.pri)
|
||||
|
||||
!contains(DEFINES, _QX_ENABLE_QT_NETWORK) {
|
||||
error(unable to use QxOrm QxService module : please define _QX_ENABLE_QT_NETWORK compilation option in QxOrm.pri configuration file)
|
||||
} # !contains(DEFINES, _QX_ENABLE_QT_NETWORK)
|
||||
|
||||
TEMPLATE = app
|
||||
DEFINES += _BUILDING_QX_SERVER
|
||||
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)
|
||||
|
||||
LIBS += -L"../../../../QxOrm/lib"
|
||||
LIBS += -L"../../../../QxOrm/test/_bin"
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
TARGET = qxServerd
|
||||
LIBS += -l"QxOrmd"
|
||||
LIBS += -l"qxServiceServerd"
|
||||
} else {
|
||||
TARGET = qxServer
|
||||
LIBS += -l"QxOrm"
|
||||
LIBS += -l"qxServiceServer"
|
||||
} # CONFIG(debug, debug|release)
|
||||
|
||||
HEADERS += ./include/precompiled.h
|
||||
HEADERS += ./include/export.h
|
||||
HEADERS += ./include/main_dlg.h
|
||||
|
||||
SOURCES += ./src/main_dlg.cpp
|
||||
SOURCES += ./src/main.cpp
|
||||
|
||||
FORMS += ./qt/ui/qxServer.ui
|
||||
|
||||
RESOURCES += ./qt/rcc/_qxServer.qrc
|
||||
Reference in New Issue
Block a user