lemon-project-template-glpk
comparison CMakeLists.txt @ 3:efa883909c06
Slightly improve help comments
author | Peter Kovacs <kpeter@inf.elte.hu> |
---|---|
date | Tue, 16 Jun 2009 18:47:21 +0200 |
parents | 76d160eba8d4 |
children | 6de89926e594 |
comparison
equal
deleted
inserted
replaced
2:91e2626f4144 | 3:8ff636550e90 |
---|---|
3 ## Here comes the name of your project: | 3 ## Here comes the name of your project: |
4 | 4 |
5 SET(PROJECT_NAME "LEMON-PROJECT-TEMPLATE") | 5 SET(PROJECT_NAME "LEMON-PROJECT-TEMPLATE") |
6 | 6 |
7 ## Change 'hg-tip' to the current version number of your project if you wish. | 7 ## Change 'hg-tip' to the current version number of your project if you wish. |
8 ## Optionally, you can leave it as is as set PROJECT_VERSION from the cmake-gui | 8 ## Optionally, you can leave it as is and set PROJECT_VERSION from |
9 ## when you make a release. | 9 ## the cmake-gui when you make a release. |
10 ## The last parameter is a help string displayed by CMAKE. | 10 ## The last parameter is a help string displayed by CMAKE. |
11 | 11 |
12 SET(PROJECT_VERSION "hg-tip" | 12 SET(PROJECT_VERSION "hg-tip" |
13 CACHE STRING "LEMON PROJECT TEMPLATE version string.") | 13 CACHE STRING "${PROJECT_NAME} version string") |
14 | 14 |
15 ## Do not edit this. | 15 ## Do not edit this. |
16 PROJECT(${PROJECT_NAME}) | 16 PROJECT(${PROJECT_NAME}) |
17 | 17 |
18 SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) | 18 SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) |
86 # # C4996: 'function': was declared deprecated | 86 # # C4996: 'function': was declared deprecated |
87 # ENDIF(MSVC) | 87 # ENDIF(MSVC) |
88 | 88 |
89 ENABLE_TESTING() | 89 ENABLE_TESTING() |
90 | 90 |
91 ## This auxiliary doxygen files (.dox) should be placed in the 'doc' | 91 ## The auxiliary doxygen files (.dox) should be placed in the 'doc' |
92 ## subdirectory. The next line includes the CMAKE config of that directory. | 92 ## subdirectory. The next line includes the CMAKE config of that directory. |
93 | 93 |
94 ADD_SUBDIRECTORY(doc) | 94 ADD_SUBDIRECTORY(doc) |
95 | 95 |
96 ####################################################################### | 96 ####################################################################### |