30 lines
683 B
Prolog
30 lines
683 B
Prolog
QT -= gui
|
|
|
|
TEMPLATE = lib
|
|
DEFINES += CACULATOR_C_INTERFACE_LIBRARY
|
|
|
|
# INCLUDEPATH+=$$_PRO_FILE_PWD_/../Utilities/
|
|
|
|
|
|
CONFIG += c++17
|
|
QMAKE_CXX=x86_64-w64-mingw32-g++
|
|
|
|
# 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 += \
|
|
calculator_c_interface_lib.cpp \
|
|
tariff_editor.cpp
|
|
|
|
HEADERS += \
|
|
calculator_c_interface_lib.h \
|
|
calculator_c_interface_lib_global.h
|
|
tariff_editor.h
|
|
|
|
# Default rules for deployment.
|
|
unix {
|
|
target.path = /usr/lib
|
|
}
|
|
!isEmpty(target.path): INSTALLS += target
|