cmake: Update main CMakeLists file to use refactored frontend

This commit is contained in:
PatTheMav 2024-12-09 21:42:42 +01:00
parent 47613a0927
commit 7db4a75913
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -29,6 +29,6 @@ add_subdirectory(plugins)
add_subdirectory(test/test-input)
add_subdirectory(UI)
add_subdirectory(frontend)
message_configuration()

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)

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)