mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
74 lines
1.5 KiB
CMake
74 lines
1.5 KiB
CMake
project(ScreenPlayWallpaper)
|
|
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
|
|
find_package(
|
|
Qt5
|
|
COMPONENTS Quick
|
|
Widgets
|
|
Gui
|
|
WebEngine
|
|
QuickCompiler
|
|
REQUIRED)
|
|
|
|
|
|
if(WIN32)
|
|
set(src_plattform
|
|
src/windowsdesktopproperties.cpp
|
|
src/winwindow.cpp)
|
|
set(headers_plattform
|
|
src/windowsdesktopproperties.h
|
|
src/winwindow.h)
|
|
elseif(APPLE)
|
|
set(src_plattform
|
|
src/macintegration.cpp
|
|
src/macwindow.cpp)
|
|
set(headers_plattform
|
|
src/macintegration.h
|
|
src/macbridge.h
|
|
src/macwindow.h)
|
|
elseif(UNIX)
|
|
set(src_plattform
|
|
main.cpp
|
|
src/linuxwindow.cpp)
|
|
set(headers_plattform
|
|
src/linuxwindow.h)
|
|
endif()
|
|
|
|
set( src
|
|
main.cpp
|
|
src/basewindow.cpp)
|
|
set( headers
|
|
src/basewindow.h)
|
|
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
set(resources SPWResources.qrc)
|
|
else()
|
|
qtquick_compiler_add_resources(resources SPWResources.qrc )
|
|
endif()
|
|
|
|
|
|
|
|
add_executable(${PROJECT_NAME} ${src} ${headers} ${src_plattform} ${headers_plattform} ${resources})
|
|
|
|
# Disable console window on Windows
|
|
# https://stackoverflow.com/questions/8249028/how-do-i-keep-my-qt-c-program-from-opening-a-console-in-windows
|
|
set_property(TARGET ${PROJECT_NAME} PROPERTY WIN32_EXECUTABLE true)
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
PRIVATE
|
|
Qt5::Quick
|
|
Qt5::Gui
|
|
Qt5::Widgets
|
|
Qt5::Core
|
|
Qt5::WebEngine
|
|
ScreenPlaySDK
|
|
)
|
|
|
|
|
|
configure_file(index.html ${CMAKE_BINARY_DIR}/bin/ COPYONLY)
|
|
|