/alps/ufodecode

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ufodecode

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Matthias Vogelgesang
  • Date: 2012-07-18 14:43:59 UTC
  • Revision ID: matthias.vogelgesang@kit.edu-20120718144359-uno2me7s6h7sxnje
Add INSTALL and README

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
set(PACKAGE_VERSION "0.2.0")
9
9
set(PACKAGE_NAME "${TARNAME}")
10
10
set(PACKAGE_TARNAME "${TARNAME}")
11
 
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
 
11
set(PACKAGE_STRING "${PACKAGE_NAME}-${PACKAGE_VERSION}")
12
12
set(PACKAGE_BUGREPORT "http://ufo.kit.edu/ufo/newticket")
13
13
 
 
14
set(CPACK_SOURCE_GENERATOR "TGZ")
 
15
set(CPACK_SOURCE_IGNORE_FILES ".git" "tags" ".bzr" ".swp")
 
16
set(CPACK_SOURCE_PACKAGE_FILE_NAME ${PACKAGE_STRING} CACHE INTERNAL "tarball basename")
 
17
 
14
18
if(NOT DEFINED BIN_INSTALL_DIR)
15
19
    set(BIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/bin")
16
20
endif(NOT DEFINED BIN_INSTALL_DIR)
36
40
add_subdirectory(doc)
37
41
add_subdirectory(test)
38
42
 
 
43
include(CPack)