Merge pull request #4658 from syershov/fix-cmake-build

Fix cmake build
This commit is contained in:
Jenkins 2016-11-03 17:44:29 +03:00 committed by GitHub
commit dd7fce49f6
2 changed files with 7 additions and 3 deletions

View file

@ -39,12 +39,16 @@ include_directories(
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR})
set(LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR})
if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
endif()
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
add_definitions(-DDEBUG)
endif()
if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
add_definitions(-DRELEASE)
endif()
if (NOT NO_TESTS)

View file

@ -21,5 +21,5 @@ include_directories(${PYTHON_INCLUDE_DIRS})
add_library(${PROJECT_NAME} MODULE ${SRC})
omim_link_libraries(${PROJECT_NAME} ${PYTHON_LIBRARIES} ${Boost_LIBRARIES} base geometry coding tracking)
omim_link_libraries(${PROJECT_NAME} ${PYTHON_LIBRARIES} ${Boost_LIBRARIES} tracking coding geometry base)
set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "")