QT -= gui QT += xml multimedia core5compat TEMPLATE = lib DEFINES += HW_LIBRARY TARGET = gtl_hw 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_input.cpp \ gtl_hw.cpp \ gtl_hw_audio.cpp \ gtl_hw_audio_input_device.cpp \ gtl_hw_device.cpp \ gtl_hw_generator.cpp \ gtl_hw_generator_analog_input.cpp \ gtl_hw_player.cpp \ gtl_hw_player_analog_input.cpp \ gtl_hw_player_file.cpp \ gtl_hw_player_file_gtr.cpp \ gtl_hw_player_file_wav.cpp \ gtl_hw_recorder.cpp \ gtl_hw_recorder_gtr.cpp \ gtl_hw_recorder_wav.cpp HEADERS += \ gtl_analog_input.h \ gtl_hardware_interface.h \ gtl_hw.h \ gtl_hw_audio.h \ gtl_hw_audio_input_device.h \ gtl_hw_device.h \ gtl_hw_generator.h \ gtl_hw_generator_analog_input.h \ gtl_hw_player.h \ gtl_hw_player_analog_input.h \ gtl_hw_player_file.h \ gtl_hw_player_file_gtr.h \ gtl_hw_player_file_wav.h \ gtl_hw_recorder.h \ gtl_hw_recorder_gtr.h \ gtl_hw_recorder_wav.h \ hw_global.h TRANSLATIONS += \ hw_ru_RU.ts # Default rules for deployment. unix { target.path = /usr/lib } !isEmpty(target.path): INSTALLS += target SUBDIRS += \ gtl_device/gtl_device.pro 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 INCLUDEPATH += $$PWD/../ DEPENDPATH += $$PWD/../