You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
Prolog
42 lines
1.2 KiB
Prolog
|
3 weeks ago
|
QT += core gui widgets
|
||
|
|
|
||
|
|
TARGET = nmCalculation
|
||
|
|
TEMPLATE = lib
|
||
|
|
DEFINES += NM_CALCULATION_LIBRARY
|
||
|
|
|
||
|
|
include(../../setting.pri)
|
||
|
|
include(../../vtk.pri)
|
||
|
|
|
||
|
|
# You can make your code fail to compile if it uses deprecated APIs.
|
||
|
|
# In order to do so, uncomment the following line.
|
||
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||
|
|
|
||
|
|
SOURCES += $${wtSrc}/nmNum/nmCalculation/*.cpp \
|
||
|
|
|
||
|
|
HEADERS += $${wtInclude}/nmNum/nmCalculation/*.h \
|
||
|
|
|
||
|
|
INCLUDEPATH += $${wtInclude}/iBase/iBase \
|
||
|
|
$${wtInclude}/iBase/Interface
|
||
|
|
|
||
|
|
INCLUDEPATH += $${wtInclude}/iData/iDataEngine \
|
||
|
|
$${wtInclude}/iData/iDataPool
|
||
|
|
|
||
|
|
INCLUDEPATH += \
|
||
|
|
$${wtInclude}/mData/mProjectManager/DataModels \
|
||
|
|
$${wtInclude}/mData/mModuleDefines \
|
||
|
|
$${wtInclude}/mData/mProjectManager
|
||
|
|
|
||
|
|
INCLUDEPATH += \
|
||
|
|
$${wtInclude}/nmNum/nmCalculation \
|
||
|
|
$${wtInclude}/nmNum/nmData \
|
||
|
|
$${wtInclude}/iBase/iDefines \
|
||
|
|
$${wtInclude}/iBase/iLogs \
|
||
|
|
$${geoHome}/3rd/SinglePhaseSolver/include \
|
||
|
|
$${geoHome}/3rd/Pebi/include
|
||
|
|
|
||
|
|
INCLUDEPATH += $${geoHome}/3rd/JSON/rapidjson-1.1.0/include/
|
||
|
|
|
||
|
|
LIBS += -liLogs -liBase -lmProjectManager -liDataEngine -liDataPool \
|
||
|
|
-lmProjectManager \
|
||
|
|
-lnmData
|