-
Notifications
You must be signed in to change notification settings - Fork 95
/
CMakeLists.txt
101 lines (87 loc) · 3.93 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
cmake_minimum_required(VERSION 2.8)
project(DLoopDetector)
include(ExternalProject)
option(BUILD_DemoBRIEF "Build demo application with BRIEF features" OFF)
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build." FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
"MinSizeRel" "RelWithDebInfo")
endif()
if(MSVC)
add_compile_options(/W4)
else()
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
set(HDRS
include/DLoopDetector/DLoopDetector.h include/DLoopDetector/TemplatedLoopDetector.h)
set(DEPENDENCY_DIR ${CMAKE_CURRENT_BINARY_DIR}/dependencies)
set(DEPENDENCY_INSTALL_DIR ${DEPENDENCY_DIR}/install)
set(DEPENDENCY_CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE})
if(DEFINED OpenCV_DIR)
set(DEPENDENCY_CMAKE_ARGS ${DEPENDENCY_CMAKE_ARGS} -DOpenCV_DIR=${OpenCV_DIR})
endif()
find_package(OpenCV REQUIRED)
include_directories(${OpenCV_INCLUDE_DIRS})
macro(GetDependency name other_dependency)
find_package(${name} QUIET
PATHS ${DEPENDENCY_INSTALL_DIR})
if(${${name}_FOUND})
message("${name} library found, using it from the system")
include_directories(${${name}_INCLUDE_DIRS})
add_custom_target(${name}_dep)
else(${${name}_FOUND})
message("${name} library not found in the system, it will be downloaded on build")
option(DOWNLOAD_${name}_dependency "Download ${name} dependency" ON)
if(${DOWNLOAD_${name}_dependency})
if(NOT ${other_dependency})
set(dependency ${other_dependency}_dep)
endif()
ExternalProject_Add(${name}
PREFIX ${DEPENDENCY_DIR}
GIT_REPOSITORY http://github.com/dorian3d/${name}
GIT_TAG master
INSTALL_DIR ${DEPENDENCY_INSTALL_DIR}
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=<INSTALL_DIR> ${DEPENDENCY_CMAKE_ARGS}
DEPENDS ${dependency})
add_custom_target(${name}_dep ${CMAKE_COMMAND} ${CMAKE_SOURCE_DIR} DEPENDS ${name})
else()
message(SEND_ERROR "Please, activate DOWNLOAD_${name}_dependency option or download manually")
endif(${DOWNLOAD_${name}_dependency})
endif(${${name}_FOUND})
endmacro(GetDependency)
GetDependency(DLib "")
GetDependency(DBoW2 DLib)
add_custom_target(Dependencies ${CMAKE_COMMAND} ${CMAKE_SOURCE_DIR} DEPENDS DBoW2_dep DLib_dep)
include_directories(include/DLoopDetector/)
if(BUILD_DemoBRIEF)
add_executable(demo_brief demo/demo_brief.cpp)
add_dependencies(demo_brief DLib_dep DBoW2_dep)
target_link_libraries(demo_brief ${OpenCV_LIBS} ${DLib_LIBS} ${DBoW2_LIBS})
target_include_directories(demo_brief PUBLIC ${DLib_INCLUDE_DIRS} ${DBoW2_INCLUDE_DIRS})
set_target_properties(demo_brief PROPERTIES CXX_STANDARD 11)
endif(BUILD_DemoBRIEF)
#if(BUILD_DemoSURF)
# add_executable(demo_surf demo/demo_surf.cpp)
# target_link_libraries(demo_surf ${OpenCV_LIBS} ${DLib_LIBS} ${DBoW2_LIBS})
#endif(BUILD_DemoSURF)
if(BUILD_DemoBRIEF)
set(RESOURCE_DIR ${CMAKE_CURRENT_BINARY_DIR}/resources/)
set(RESOURCE_FILE ${CMAKE_CURRENT_BINARY_DIR}/resources.tar.gz)
if(NOT EXISTS ${RESOURCE_DIR})
if(EXISTS ${RESOURCE_FILE})
execute_process(COMMAND ${CMAKE_COMMAND} -E tar xzf ${RESOURCE_FILE})
else()
message("To run the demo application, please download \
https://drive.google.com/uc?export=download&id=1MpZwPjXDAUxKfSTpeCjG0PAUpaeWuo7D \
into ${RESOURCE_FILE} and run cmake again.")
endif()
endif(NOT EXISTS ${RESOURCE_DIR})
endif(BUILD_DemoBRIEF)
configure_file(src/DLoopDetector.cmake.in
"${PROJECT_BINARY_DIR}/DLoopDetectorConfig.cmake" @ONLY)
install(DIRECTORY include/DLoopDetector DESTINATION ${CMAKE_INSTALL_PREFIX}/include)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/DLoopDetectorConfig.cmake"
DESTINATION ${CMAKE_INSTALL_PREFIX}/include/${PROJECT_NAME})
install(FILES "${PROJECT_BINARY_DIR}/DLoopDetectorConfig.cmake"
DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/cmake/DLoopDetector/)
install(DIRECTORY ${DEPENDENCY_INSTALL_DIR}/ DESTINATION ${CMAKE_INSTALL_PREFIX} OPTIONAL)