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:
authorYuri Gorshenin <y@maps.me>2017-02-28 17:42:49 +0300
committerSergey Yershov <syershov@maps.me>2017-02-28 21:00:37 +0300
commitf36d72bb26c43cb977116494dab611d239ee21d2 (patch)
treea4e673fb1e70513d69053aa47f8ec4ee4ea6cbaa /tracking/pytracking
parentf9835819217e32bc881f5c1ee67477ed07e3b49c (diff)
[build] Use system-provided boost instead of 3party.beta-655
Diffstat (limited to 'tracking/pytracking')
-rw-r--r--tracking/pytracking/CMakeLists.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/tracking/pytracking/CMakeLists.txt b/tracking/pytracking/CMakeLists.txt
index 3cf7f1d75e..37c88d85b7 100644
--- a/tracking/pytracking/CMakeLists.txt
+++ b/tracking/pytracking/CMakeLists.txt
@@ -6,19 +6,8 @@ set(
SRC
bindings.cpp
)
-add_compile_options(
- "-Wno-unused-local-typedef"
-)
-
-set(Boost_USE_MULTITHREADED ON)
-
-if (PLATFORM_MAC)
- set(Boost_USE_STATIC_LIBS ON)
- set(Boost_USE_STATIC_RUNTIME ON)
-endif()
find_package(PythonLibs 2.7 REQUIRED)
-find_package(Boost 1.54 REQUIRED COMPONENTS python)
include_directories(${PYTHON_INCLUDE_DIRS})
add_library(${PROJECT_NAME} MODULE ${SRC})