summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/Dist.cmake
blob: 8de9b62e9d01c15acea69643f6dd82481f66f2ea (plain)
1
2
3
4
5
6
7
#make dist target
SET(2GEOM_DIST_PREFIX "${PROJECT_NAME}-${2GEOM_VERSION}")
ADD_CUSTOM_TARGET(dist
    COMMAND git config tar.bz2.command bzip2
    COMMAND git archive --prefix=${2GEOM_DIST_PREFIX}/ -o ${CMAKE_BINARY_DIR}/${2GEOM_DIST_PREFIX}.tar.bz2 HEAD
    WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
    VERBATIM)