cmake: Update main CMakeLists file to use refactored frontend

This commit is contained in:
PatTheMav
2025-01-08 17:33:13 +01:00
parent 47613a0927
commit 7db4a75913
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -29,6 +29,6 @@ add_subdirectory(plugins)
add_subdirectory(test/test-input)
add_subdirectory(UI)
add_subdirectory(frontend)
message_configuration()
+1 -1
View File
@@ -5,7 +5,7 @@ include_guard(GLOBAL)
include(cpackconfig_common)
# Add GPLv2 license file to CPack
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/UI/data/license/gplv2.txt")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/frontend/data/license/gplv2.txt")
set(CPACK_PACKAGE_EXECUTABLES "obs")
if(ENABLE_RELEASE_BUILD)
+1 -1
View File
@@ -5,7 +5,7 @@ include_guard(GLOBAL)
include(cpackconfig_common)
# Add GPLv2 license file to CPack
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/UI/data/license/gplv2.txt")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/frontend/data/license/gplv2.txt")
set(CPACK_PACKAGE_VERSION "${OBS_VERSION_CANONICAL}")
set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-windows-${CMAKE_VS_PLATFORM_NAME}")
set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY FALSE)