QT -= gui QT += xml qml TEMPLATE = lib DEFINES += CORE_LIBRARY TARGET = gtl_core CONFIG += c++11 # 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 += \ gtl_analog_data.cpp \ gtl_core.cpp \ gtl_data_model.cpp \ gtl_data_model_node.cpp \ gtl_device.cpp \ gtl_selection_data_model.cpp \ gtl_logger.cpp HEADERS += \ core_global.h \ gtl.h \ gtl_analog_data.h \ gtl_core.h \ gtl_data_model.h \ gtl_data_model_node.h \ gtl_device.h \ gtl_selection_data_model.h \ gtl_logger.h # Default rules for deployment. unix { target.path = /usr/lib } !isEmpty(target.path): INSTALLS += target win32:CONFIG(release, debug|release): DESTDIR = ../.output/release else:win32:CONFIG(debug, debug|release): DESTDIR = ../.output/debug else:unix: DESTDIR = ../../.ouput INCLUDEPATH += $$PWD/.. DEPENDPATH += $$PWD/..