mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-14 18:34:16 -04:00
16 lines
493 B
CMake
16 lines
493 B
CMake
# OBS CMake Windows CPack configuration module
|
|
|
|
include_guard(GLOBAL)
|
|
|
|
include(cpackconfig_common)
|
|
|
|
# Add GPLv2 license file to CPack
|
|
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)
|
|
set(CPACK_GENERATOR ZIP)
|
|
set(CPACK_THREADS 0)
|
|
|
|
include(CPack)
|