mapnik/cmake/pack.cmake
Mathis Logemann 7f2511632f add packaging
2021-07-02 22:26:36 +02:00

14 lines
240 B
CMake

include(InstallRequiredSystemLibraries)
set(CPACK_SOURCE_GENERATOR "TGZ")
set(CPACK_GENERATOR "TGZ")
set(CPACK_SOURCE_IGNORE_FILES
\\.git/
build/
".*~$"
out/
\\.vs/
\\.vscode/
)
set(CPACK_VERBATIM_VARIABLES YES)
include(CPack)