-
Notifications
You must be signed in to change notification settings - Fork 7
/
CMakeLists.txt
47 lines (36 loc) · 1.4 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
cmake_minimum_required(VERSION 3.11)
project(Scancontext VERSION 1.0.0)
set(CMAKE_CXX_STANDARD 14)
if(NOT CMAKE_BUILD_TYPE)
# Options: Debug, Release, MinSizeRel, RelWithDebInfo
message(STATUS "No build type selected, default to Release")
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose build type." FORCE)
endif()
include(FetchContent)
###############################################################################
# Options
###############################################################################
option(SC_BUILD_PYTHON_BINDING "Build Python bindings for Scancontext" ON)
###############################################################################
# Dependencies
###############################################################################
find_package(Eigen3 3.3 REQUIRED NO_MODULE)
FetchContent_Declare(nanoflann
GIT_REPOSITORY https://github.com/jlblancoc/nanoflann
GIT_TAG v1.4.2
)
FetchContent_MakeAvailable(nanoflann)
if(SC_BUILD_PYTHON_BINDING)
FetchContent_Declare(pybind11
GIT_REPOSITORY https://github.com/pybind/pybind11
GIT_TAG v2.9.2
)
FetchContent_MakeAvailable(pybind11)
endif()
###############################################################################
# Targets
###############################################################################
add_subdirectory(scancontext)
if(SC_BUILD_PYTHON_BINDING)
add_subdirectory(python)
endif()