Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimofey <t.danshin@corp.mail.ru>2016-09-13 13:42:08 +0300
committerTimofey <t.danshin@corp.mail.ru>2016-09-13 16:50:50 +0300
commit78bc8e0b8c1b4c6c9713323a551df1f6b9a84a60 (patch)
tree2da0fb3b8eca83bf64af659e5cb8e979e95ffaec /CMakeLists.txt
parent22427594e5d0cc38b2f896d8616f36b618b644fb (diff)
Added geometry tests.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5930c981c3..d79d7bc3d8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,7 +6,6 @@ add_subdirectory(3party/minizip)
add_subdirectory(3party/succinct)
add_subdirectory(3party/tomcrypt)
-
add_compile_options(
"-Wall"
"-std=c++11"
@@ -14,7 +13,7 @@ add_compile_options(
find_package(Threads)
find_library(LIBZ NAMES z)
-if(LIBZ STREQUAL "LIBZ-NOTFOUND")
+if (LIBZ STREQUAL "LIBZ-NOTFOUND")
message(FATAL_ERROR "Failed to find libz library.")
endif()
@@ -67,5 +66,5 @@ endfunction()
add_subdirectory(base)
add_subdirectory(coding)
#add_subdirectory(editor)
-#add_subdirectory(geometry)
+add_subdirectory(geometry)
#add_subdirectory(storage)