-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
88 lines (74 loc) · 2.19 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
cmake_minimum_required(VERSION 2.8.3)
project(fastdtw_cpp)
## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED)
set(CMAKE_BUILD_TYPE Release)
set(CMAKE_CXX_FLAGS "-Wall -O3 -march=core2 -Os")
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
elseif(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
else()
message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no
C++11 support. Please use a different C++ compiler.")
endif()
find_package(OpenCV QUIET)
find_package(Boost QUIET)
catkin_package(
INCLUDE_DIRS include
LIBRARIES fastdtw_cpp
# CATKIN_DEPENDS other_catkin_pkg
# DEPENDS system_lib
)
###########
## Build ##
###########
## Specify additional locations of header files
## Your package locations should be listed before other locations
include_directories(
include
${Boost_INCLUDE_DIRS}
${OpenCV_INCLUDE_DIRS}
)
## Declare a cpp library
add_library(fastdtw_cpp
include/fastdtw_cpp/distances.h
include/fastdtw_cpp/dtw.h
include/fastdtw_cpp/fastdtw.h
include/fastdtw_cpp/path.h
include/fastdtw_cpp/projection.h
include/fastdtw_cpp/projection_idc.h
include/fastdtw_cpp/utils.h
include/fastdtw_cpp/mask.h
include/fastdtw_cpp/downsampling.h
src/fastdtw_cpp/distances.cpp
src/fastdtw_cpp/dtw.cpp
src/fastdtw_cpp/fastdtw.cpp
src/fastdtw_cpp/path.cpp
src/fastdtw_cpp/projection.cpp
src/fastdtw_cpp/projection_idc.cpp
src/fastdtw_cpp/utils.cpp
src/fastdtw_cpp/mask.cpp
src/fastdtw_cpp/downsampling.cpp
)
add_executable(fastdtw_cpp_examples
src/examples/examples.cpp
)
target_link_libraries(fastdtw_cpp_examples
fastdtw_cpp
)
if(${OpenCV_FOUND} AND ${Boost_FOUND})
add_executable(fastdtw_cpp_example_visual
src/examples/visual_example.cpp
)
target_link_libraries(fastdtw_cpp_example_visual
${OpenCV_LIBRARIES}
${Boost_LIBRARIES}
fastdtw_cpp
)
endif()