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-09 16:41:35 +0300
committerTimofey <t.danshin@corp.mail.ru>2016-11-09 16:41:35 +0300
commit578e95bb1cf359a798260f41ad1025747629a11b (patch)
tree67789b00e9b859fbd477c6b978906a28b5b64dfc /3party/pugixml
parent6ff505b2a8644fd12eb0aa82628b0366117d004c (diff)
Brought the 3party cmake lists to accordance with the project's style.
Diffstat (limited to '3party/pugixml')
-rw-r--r--3party/pugixml/CMakeLists.txt11
1 files changed, 2 insertions, 9 deletions
diff --git a/3party/pugixml/CMakeLists.txt b/3party/pugixml/CMakeLists.txt
index 7d446af551..64be298433 100644
--- a/3party/pugixml/CMakeLists.txt
+++ b/3party/pugixml/CMakeLists.txt
@@ -1,11 +1,4 @@
-cmake_minimum_required(VERSION 3.2)
-
-project(pugixml C CXX)
-
-add_compile_options(
- "-Wall"
- "-std=c++11"
-)
+project(pugixml)
include_directories(src)
@@ -16,4 +9,4 @@ set(
src/pugiconfig.hpp
)
-add_library(pugixml ${SRC})
+add_library(${PROJECT_NAME} ${SRC})