ATBTariffCalculator/Calculator/Calculator.pro

29 lines
985 B
Prolog
Raw Normal View History

2024-03-11 12:14:28 +01:00
QT+=core
2024-03-04 16:23:10 +01:00
2024-03-11 12:14:28 +01:00
CONFIG+=c++20 console
2024-03-04 16:23:10 +01:00
2024-03-11 12:14:28 +01:00
INCLUDEPATH+="../CalculatorCInterface"
2024-03-04 16:23:10 +01:00
2024-03-11 12:14:28 +01:00
#LIBS += "C:\build-ATBTariffCalculator-Desktop_Qt_6_5_0_MinGW_64_bit-Debug\CalculatorCInterface\debug\libCalculatorCInterface.a"
#LIBS += "C:\build-ATBTariffCalculator-Desktop_Qt_6_5_0_MinGW_64_bit-Debug\CalculatorCInterface\debug\CalculatorCInterface.dll"
2024-03-11 14:15:13 +01:00
unix {
LIBS += -L/opt/ptu5/opt/build-ATBTariffCalculator-Desktop_Qt_5_12_12_GCC_64bit-Debug/CalculatorCInterface/ -lCalculatorCInterface
}
2024-03-04 16:23:10 +01:00
2024-03-11 12:14:28 +01:00
# 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
2024-03-04 16:23:10 +01:00
SOURCES += \
2024-03-11 12:14:28 +01:00
main.cpp \
message_handler.cpp
2024-03-04 16:23:10 +01:00
2024-03-11 12:14:28 +01:00
HEADERS += message_handler.h
2024-03-04 16:23:10 +01:00
2024-03-11 14:15:13 +01:00
OTHER_FILES += ../tariff.json
2024-03-11 12:14:28 +01:00
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target