mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 02:52:29 +01:00
100 lines
2.4 KiB
Prolog
100 lines
2.4 KiB
Prolog
TEMPLATE = app
|
|
QT += qml quick quickcontrols2 widgets core webengine
|
|
CONFIG += c++17
|
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
TARGETPATH = ScreenPlayWallpaper
|
|
|
|
|
|
|
|
RESOURCES += \
|
|
SPWResources.qrc
|
|
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
src/basewindow.cpp \
|
|
|
|
HEADERS += \
|
|
src/basewindow.h \
|
|
|
|
win32 {
|
|
include($$PWD/../Common/qt-breakpad/qt-breakpad.pri)
|
|
LIBS += -luser32
|
|
SOURCES += \
|
|
src/windowsdesktopproperties.cpp \
|
|
src/winwindow.cpp
|
|
|
|
HEADERS += \
|
|
src/windowsdesktopproperties.h \
|
|
src/winwindow.h
|
|
|
|
CONFIG(debug, debug|release) {
|
|
install_it.path = $${OUT_PWD}/debug/
|
|
install_it.files += \
|
|
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libcrypto-1_1-x64.dll \
|
|
$$PWD/../Common/vcpkg/installed/x64-windows/debug/bin/libssl-1_1-x64.dll \
|
|
|
|
} else {
|
|
install_it.path = $${OUT_PWD}/release/
|
|
install_it.files += \
|
|
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libcrypto-1_1-x64.dll \
|
|
$$PWD/../Common/vcpkg/installed/x64-windows/bin/libssl-1_1-x64.dll \
|
|
}
|
|
}
|
|
|
|
include(../ScreenPlaySDK/ScreenPlaySDK.pri)
|
|
|
|
macx {
|
|
QMAKE_LIBDIR += $$OUT_PWD/
|
|
install_it.path = $${OUT_PWD}/../ScreenPlaySDK
|
|
|
|
html_data.files = index.html
|
|
html_data.path = Contents/MacOS
|
|
QMAKE_BUNDLE_DATA += html_data
|
|
|
|
QMAKE_LFLAGS += -framework Cocoa
|
|
SOURCES += src/macintegration.cpp
|
|
HEADERS += src/macintegration.h \
|
|
src/macbridge.h
|
|
OBJECTIVE_SOURCES += src/MacBridge.mm
|
|
|
|
SOURCES += \
|
|
src/macwindow.cpp
|
|
|
|
HEADERS += \
|
|
src/macwindow.h
|
|
}
|
|
|
|
unix:!macx {
|
|
|
|
install_it.path = $${OUT_PWD}/
|
|
|
|
LIBS += -lX11
|
|
|
|
SOURCES += \
|
|
src/linuxwindow.cpp
|
|
|
|
HEADERS += \
|
|
src/linuxwindow.h
|
|
|
|
CONFIG(debug, debug|release) {
|
|
install_it.files += \
|
|
$$PWD/../Common/vcpkg/installed/x64-linux/debug/bin/libcrypto-1_1-x64.so \
|
|
$$PWD/../Common/vcpkg/installed/x64-linux/debug/bin/libssl-1_1-x64.so \
|
|
|
|
} else {
|
|
|
|
install_it.files += \
|
|
$$PWD/../Common/vcpkg/installed/x64-linux/bin/libcrypto-1_1-x64.so \
|
|
$$PWD/../Common/vcpkg/installed/x64-linux/bin/libssl-1_1-x64.so \
|
|
}
|
|
}
|
|
|
|
install_it.files += index.html \
|
|
|
|
INSTALLS += install_it
|
|
DISTFILES += \
|
|
index.html
|