diff options
| author | Thomas Knudsen <busstoptaktik@users.noreply.github.com> | 2017-09-28 16:40:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-28 16:40:27 +0200 |
| commit | 33e1c8e78f7bb826617f08f29e182b530d2ea153 (patch) | |
| tree | d6e8c5bc78fa931cc25f4e56a08c5458f28d8755 /src/CMakeLists.txt | |
| parent | a90a9ec5daa335b8b5eb6c93e4f5a0e48ca5656e (diff) | |
| download | PROJ-33e1c8e78f7bb826617f08f29e182b530d2ea153.tar.gz PROJ-33e1c8e78f7bb826617f08f29e182b530d2ea153.zip | |
Introducing the cct 'Coordinate Conversion and Transformation' program (#574)
* Introducing the cct 'Coordinate Conversion and Transformation' program
* cct: Add some rudimentary documentation
* Removed documentation again, moving to a separate doc PR
* Minor corrections in response to a review by @kbevers
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index eec7ddec..788273a9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -3,6 +3,7 @@ include(lib_proj.cmake) # configure executable build +option(BUILD_CCT "Build cct (coordinate conversion and transformation tool)" ON) option(BUILD_CS2CS "Build cs2cs (coordinate systems to coordinate systems translation tool)" ON) option(BUILD_PROJ "Build proj (cartographic projection tool : latlong <-> projected coordinates" ON) option(BUILD_GEOD "Build geod (computation of geodesic lines)" ON) @@ -22,6 +23,11 @@ if(NOT MSVC) endif () endif () +if(BUILD_CCT) + include(bin_cct.cmake) + set(BIN_TARGETS ${BIN_TARGETS} cct) +endif(BUILD_CCT) + if(BUILD_CS2CS) include(bin_cs2cs.cmake) set(BIN_TARGETS ${BIN_TARGETS} cs2cs) |
