MOBILISIS-Calculator/main/main.pro

39 lines
777 B
Prolog
Raw Permalink Normal View History

TEMPLATE = app
TARGET = main
CONFIG += -std=c++11
2024-01-18 15:05:15 +01:00
QMAKE_CFLAGS = -c -pipe -std=c11 -g -O -Wall -Wno-attributes -W -DDEBUG -D_REENTRANT -fPIC
QMAKE_CXXFLAGS += -std=c++17 -g -O
INCLUDEPATH += $$_PRO_FILE_PWD_/../../MOBILISIS-Calculator/library/include/mobilisis/
2023-05-12 12:41:37 +02:00
INCLUDEPATH += $$_PRO_FILE_PWD_/../../MOBILISIS-Calculator/library/include/rapidjson/
INCLUDEPATH += $$_PRO_FILE_PWD_/../../MOBILISIS-Calculator/library/include/
INCLUDEPATH += .
unix {
2023-05-04 11:20:59 +02:00
LIBS += -L$$OUT_PWD/../library/ -lmobilisis_calc
}
CONFIG(debug, debug|release) {
win32 {
2023-05-04 11:20:59 +02:00
LIBS += -L$$OUT_PWD/../library/debug/ -lmobilisis_calc
}
} else {
win32 {
2023-05-04 11:20:59 +02:00
LIBS += -L$$OUT_PWD/../library/release/ -lmobilisis_calc
}
}
SOURCES += main.cpp
# HEADERS += \
# OTHER_FILES += \