1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-18 08:22:33 +02:00
ScreenPlay/ScreenPlayWorkshop/CMakeLists.txt

105 lines
3.5 KiB
CMake
Raw Normal View History

2021-07-16 11:14:21 +02:00
add_subdirectory(SteamSDK)
set(CMAKE_AUTOMOC ON)
set(CMAKE_CXX_STANDARD 20)
find_package(
Qt6
2021-07-16 16:44:28 +02:00
COMPONENTS Quick QML Widgets Gui
REQUIRED)
2021-07-16 11:14:21 +02:00
add_library(
2021-07-16 16:44:28 +02:00
workshopplugin SHARED
2021-07-16 11:14:21 +02:00
src/steamapiwrapper.h
src/steamapiwrapper.cpp
src/steamworkshoplistmodel.h
src/uploadlistmodel.h
src/steamworkshopitem.h
src/steamworkshopitem.cpp
src/workshop.cpp
src/workshop.h
src/workshopitem.h
src/installedlistmodel.cpp
src/installedlistmodel.h
src/screenplayworkshop_plugin.cpp
src/screenplayworkshop_plugin.h
src/steamworkshop.cpp
src/steamworkshop.h
src/steamworkshoplistmodel.cpp
src/steamaccount.cpp
src/steamaccount.h
src/steamqmlimageprovider.cpp
src/steamqmlimageprovider.h
qmldir
2021-07-16 16:44:28 +02:00
${qml_resources})
2021-07-16 11:14:21 +02:00
2021-07-21 15:44:48 +02:00
set(WORKSHOP_PLUGIN_DIR ${CMAKE_BINARY_DIR}/bin/workshop)
file(MAKE_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
2021-07-21 15:44:48 +02:00
set_target_properties(workshopplugin PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
set_target_properties(workshopplugin PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
set_target_properties(workshopplugin PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
2021-07-16 11:14:21 +02:00
set(steam_lib_path "${CMAKE_CURRENT_SOURCE_DIR}/SteamSDK/redistributable_bin/")
if(WIN32)
2021-07-16 16:44:28 +02:00
set(steam_lib "${steam_lib_path}/win64/steam_api64.lib")
2021-07-16 11:14:21 +02:00
elseif(APPLE)
2021-07-16 16:44:28 +02:00
set(steam_lib "${steam_lib_path}/osx/libsteam_api.dylib")
2021-07-16 11:14:21 +02:00
elseif(UNIX)
2021-07-16 16:44:28 +02:00
set(steam_lib "${steam_lib_path}/linux64/libsteam_api.so")
2021-07-16 11:14:21 +02:00
endif()
target_link_libraries(workshopplugin PRIVATE Qt6::Core Qt6::Quick ${steam_lib} ScreenPlayUtil SteamSDK)
2021-07-16 11:14:21 +02:00
if(WIN32)
2021-07-16 16:44:28 +02:00
set(steam_bin "${steam_lib_path}/win64/steam_api64.dll")
2021-07-16 11:14:21 +02:00
elseif(APPLE)
2021-07-16 16:44:28 +02:00
set(steam_bin "${steam_lib_path}/osx/libsteam_api.dylib")
2021-07-16 11:14:21 +02:00
elseif(UNIX)
2021-07-16 16:44:28 +02:00
set(steam_bin "${steam_lib_path}/linux64/libsteam_api.so")
2021-07-16 11:14:21 +02:00
endif()
2021-07-16 11:36:02 +02:00
if(APPLE)
set(workshop_install_dir ${CMAKE_BINARY_DIR}/bin/ScreenPlay.app/Contents/MacOS/Workshop)
2021-07-16 16:44:28 +02:00
add_custom_target(
build-time-make-directory
2021-07-16 11:36:02 +02:00
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E make_directory ${workshop_install_dir})
2021-07-16 16:44:28 +02:00
add_custom_command(
TARGET workshopplugin
2021-07-16 11:36:02 +02:00
POST_BUILD
COMMENT "Copying qmldir info into ScreenPlay.app bundle"
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/qmldir ${workshop_install_dir})
add_custom_command(
TARGET workshopplugin
POST_BUILD
COMMENT "Copying workshop plugin into ScreenPlay.app bundle"
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/Workshop/libworkshopplugin.dylib ${workshop_install_dir})
2021-07-16 16:44:28 +02:00
add_custom_command(
TARGET workshopplugin
2021-07-16 11:36:02 +02:00
POST_BUILD
COMMENT "Copying steam library into ScreenPlay.app bundle"
COMMAND ${CMAKE_COMMAND} -E copy ${steam_bin} ${workshop_install_dir})
if(${SCREENPLAY_STEAM})
add_custom_command(
TARGET workshopplugin
POST_BUILD
COMMENT "Copying steam_appid.txt into ScreenPlay.app bundle. This is for development only!"
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/steam_appid.txt
${CMAKE_BINARY_DIR}/bin/ScreenPlay.app/Contents/MacOS/)
endif()
2021-07-16 11:36:02 +02:00
else()
if(${SCREENPLAY_STEAM})
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/steam_appid.txt ${CMAKE_BINARY_DIR}/bin/steam_appid.txt COPYONLY)
endif()
2021-07-25 15:31:35 +02:00
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/qmldir ${WORKSHOP_PLUGIN_DIR}/qmldir COPYONLY)
configure_file(${steam_bin} ${CMAKE_BINARY_DIR}/bin/ COPYONLY)
2021-07-16 11:36:02 +02:00
endif()