mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
39 lines
845 B
Prolog
39 lines
845 B
Prolog
QT += quick qml quickcontrols2 core widgets gui
|
|
CONFIG += c++17
|
|
CONFIG += qtquickcompiler
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
src/widgetwindow.cpp
|
|
|
|
HEADERS += \
|
|
src/widgetwindow.h
|
|
|
|
RESOURCES += \
|
|
SPWidgetResources.qrc
|
|
|
|
INCLUDEPATH += \
|
|
$$PWD/../../ThirdParty/ \
|
|
$$PWD/../../src/ \
|
|
|
|
include(../ScreenPlaySDK/ScreenPlaySDK.pri)
|
|
|
|
macx: {
|
|
QMAKE_LIBDIR += $$OUT_PWD/
|
|
install_it.path = $${OUT_PWD}/../ScreenPlaySDK
|
|
}
|
|
|
|
!macx: {
|
|
CONFIG(debug, debug|release) {
|
|
LIBS += -lScreenPlaySDK
|
|
install_it.path = $${OUT_PWD}/debug/
|
|
QMAKE_LIBDIR += $$OUT_PWD/../ScreenPlaySDK/debug
|
|
} else {
|
|
LIBS += -lScreenplaysdk
|
|
install_it.path = $${OUT_PWD}/release/
|
|
QMAKE_LIBDIR += $$OUT_PWD/../ScreenPlaySDK/release
|
|
}
|
|
QMAKE_LIBDIR += $$OUT_PWD/../ScreenPlaySDK
|
|
}
|