mirror of
https://github.com/input-leap/input-leap.git
synced 2026-03-01 18:23:20 +01:00
10 lines
399 B
CMake
10 lines
399 B
CMake
if (UNIX)
|
|
set(CPACK_PACKAGE_VERSION_MAJOR ${INPUTLEAP_VERSION_MAJOR})
|
|
set(CPACK_PACKAGE_VERSION_MINOR ${INPUTLEAP_VERSION_MINOR})
|
|
set(CPACK_PACKAGE_VERSION_PATCH ${INPUTLEAP_VERSION_PATCH})
|
|
set (CPACK_GENERATOR "TBZ2")
|
|
set (CPACK_SOURCE_GENERATOR "TXZ")
|
|
set (CPACK_SOURCE_IGNORE_FILES "/build/;\.gitignore$;/\.git/;/.github/;\.swp$;build_env\.*")
|
|
include (CPack)
|
|
endif()
|