aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoe Hildebrand <joe-github@cursive.net>2015-03-31 16:54:05 -0600
committerJoe Hildebrand <joe-github@cursive.net>2015-03-31 16:54:05 -0600
commitf8e26e3e4061bee87ff24fd3b4d1bf00a1096998 (patch)
treee1425fdb953df7a7a93d8cc04c6f86172e17b871 /CMakeLists.txt
parentf4c20bbeea5c90f68703e8af15e5b6dd3f629ad6 (diff)
downloadplatform_external_cn-cbor-f8e26e3e4061bee87ff24fd3b4d1bf00a1096998.tar.gz
platform_external_cn-cbor-f8e26e3e4061bee87ff24fd3b4d1bf00a1096998.tar.bz2
platform_external_cn-cbor-f8e26e3e4061bee87ff24fd3b4d1bf00a1096998.zip
Cache some strings; not 100% sure that's right
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index afef046..46022af 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,7 +5,7 @@
## prepare CMAKE
cmake_minimum_required ( VERSION 3.0.0 )
-set ( VERSION_MAJOR 0 CACHE STRING "Project major version number")
+set ( VERSION_MAJOR 0 CACHE STRING "Project major version number")
set ( VERSION_MINOR "1" CACHE STRING "Project minor version number" )
set ( VERSION_PATCH "0" CACHE STRING "Project patch version number" )
set ( CN_VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}" )
@@ -16,11 +16,11 @@ project ( "cn-cbor" VERSION "${CN_VERSION}")
find_package(Doxygen)
## setup options
-option ( use_context "Use context pointer for CBOR functions" OFF )
-option ( verbose "Produce verbose makefile output" OFF )
-option ( optimize "Optimize for size" OFF )
+option ( use_context "Use context pointer for CBOR functions" OFF )
+option ( verbose "Produce verbose makefile output" OFF )
+option ( optimize "Optimize for size" OFF )
option ( fatal_warnings "Treat build warnings as errors" ON )
-option ( coveralls "Generate coveralls data" ON )
+option ( coveralls "Generate coveralls data" ON )
option ( coveralls_send "Send data to coveralls site" OFF )
option ( build_docs "Create docs using Doxygen" ${DOXYGEN_FOUND} )