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-11-03 18:34:24 +0300
committerTimofey <t.danshin@corp.mail.ru>2016-11-09 14:20:06 +0300
commit14a9cea834027fcd1c0131b13f61c0f42f6439b9 (patch)
treea13d3ed28ccbe37e58c21119e7348e8c5ee72707 /indexer
parent2ec8f5f71fee1f199a702c179eb5d29b1f5806ef (diff)
Added project declarations to subprojects
Replaced set with append
Diffstat (limited to 'indexer')
-rw-r--r--indexer/CMakeLists.txt9
1 files changed, 3 insertions, 6 deletions
diff --git a/indexer/CMakeLists.txt b/indexer/CMakeLists.txt
index 422d0ee6d8..e239721de0 100644
--- a/indexer/CMakeLists.txt
+++ b/indexer/CMakeLists.txt
@@ -1,9 +1,6 @@
-include_directories(${OMIM_ROOT}/3party/protobuf/src)
+project(indexer)
-add_compile_options(
- "-Wall"
- "-std=c++11"
-)
+include_directories(${OMIM_ROOT}/3party/protobuf/src)
set(
SRC
@@ -139,6 +136,6 @@ set(
file(COPY ${OTHER_FILES} DESTINATION ${CMAKE_BINARY_DIR})
-add_library(indexer ${SRC})
+add_library(${PROJECT_NAME} ${SRC})
#omim_add_test_subdirectory(indexer_tests)