QT += qml xml TEMPLATE = lib DEFINES += SCRIPT_LIBRARY TARGET = gtl_script 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_scr_analog_data.cpp \ gtl_scr_engine.cpp \ gtl_scr_engine_diagnostic.cpp \ gtl_scr_engine_table.cpp \ gtl_scr_engine_table_model.cpp \ gtl_scr_spec.cpp \ gtl_scr_spec_harm.cpp \ gtl_scr_spec_harms.cpp \ gtl_scr_spec_humps.cpp \ gtl_scr_specs_model.cpp HEADERS += \ gtl_scr_analog_data.h \ gtl_scr_engine.h \ gtl_scr_engine_diagnostic.h \ gtl_scr_engine_table.h \ gtl_scr_engine_table_model.h \ gtl_scr_spec.h \ gtl_scr_spec_harm.h \ gtl_scr_spec_harms.h \ gtl_scr_spec_humps.h \ gtl_scr_specs_model.h \ script_global.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 win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../.output/release/ -lgtl_core else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../.output/debug/ -lgtl_core else:unix: LIBS += -L$$PWD/../.output/ -lgtl_core win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../.output/release/ -lgtl_math else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../.output/debug/ -lgtl_math else:unix: LIBS += -L$$PWD/../.output/ -lgtl_math win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../.output/release/ -lgtl_hw else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../.output/debug/ -lgtl_hw else:unix: LIBS += -L$$PWD/../.output/ -lgtl_hw INCLUDEPATH += $$PWD/../ DEPENDPATH += $$PWD/../ INCLUDEPATH += $$(DSPFILTERSPATH)/include DEPENDPATH += $$(DSPFILTERSPATH)/include INCLUDEPATH += $$(FFTWPATH) LIBS += -L$$(FFTWPATH) -llibfftw3-3