mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
77a81451ca
Bump Qt to 6.3 to fix video loop Remove no longer working shader and add new WIP: Shader compilation path is wrong for some reason Add Steamless version content path Remove cmake-format: sortable from CMakeLists.txt Add Widnow scale indocator icon to the bottom right Remove unused doctest and benchmark Fix tests and installer cmake logic
28 lines
575 B
CMake
28 lines
575 B
CMake
project(ScreenPlaySDK LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
find_package(
|
|
Qt6
|
|
COMPONENTS Quick Network Core
|
|
REQUIRED)
|
|
|
|
set(SOURCES
|
|
src/screenplay-sdk_plugin.cpp src/screenplaysdk.cpp)
|
|
|
|
set(HEADER
|
|
inc/screenplay-sdk_plugin.h inc/screenplaysdk.h)
|
|
|
|
add_library(${PROJECT_NAME} ${SOURCES} ${HEADER})
|
|
|
|
target_include_directories(${PROJECT_NAME} PUBLIC inc)
|
|
|
|
target_link_libraries(
|
|
${PROJECT_NAME}
|
|
PRIVATE Qt6::Core
|
|
Qt6::Quick
|
|
Qt6::Gui
|
|
Qt6::Network)
|