aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorHoward Butler <howard@hobu.co>2014-09-13 21:53:17 +0000
committerHoward Butler <howard@hobu.co>2014-09-13 21:53:17 +0000
commit4257b5bbc9fae9599bec102cbe63a9833594f779 (patch)
treee4efa2a995dc89f649ecd63787977eea9cebaa80 /src/CMakeLists.txt
parentc8ef11954ac148f9c5ce4cf12bf36a3c92c0abed (diff)
downloadPROJ-4257b5bbc9fae9599bec102cbe63a9833594f779.tar.gz
PROJ-4257b5bbc9fae9599bec102cbe63a9833594f779.zip
default most options to ON for CMake #243
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@2529 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 5441d926..e9a36aac 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -3,10 +3,10 @@
include(lib_proj.cmake)
# configure executable build
-option(BUILD_CS2CS "Build cs2cs (coordinate systems to coordinate systems translation tool)" OFF)
-option(BUILD_PROJ "Build proj (cartographic projection tool : latlong <-> projected coordinates" OFF)
-option(BUILD_GEOD "Build geod (computation of geodesic lines)" OFF)
-option(BUILD_NAD2BIN "Build nad2bin (format conversion tool) " OFF)
+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)
+option(BUILD_NAD2BIN "Build nad2bin (format conversion tool) " ON)
if(BUILD_CS2CS)
include(bin_cs2cs.cmake)