MOBILISIS-Calculator/main/main.pro

39 lines
771 B
Prolog
Raw Permalink Normal View History

TEMPLATE = app
TARGET = main
CONFIG += -std=c++11
QMAKE_CFLAGS = -c -pipe -std=c11 -g -O0 -Wall -Wno-attributes -W -DDEBUG -D_REENTRANT -fPIC
QMAKE_CXX_FLAGS += -std=c11
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 += \