-
Notifications
You must be signed in to change notification settings - Fork 94
/
CMakeLists.txt
51 lines (41 loc) · 1.3 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
cmake_minimum_required(VERSION 2.8.3)
project(code_utils)
set(CMAKE_BUILD_TYPE "Release")
set(CMAKE_CXX_FLAGS "-std=c++11")
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -Wall -g -fPIC -fopenmp")
find_package(catkin REQUIRED
roscpp
std_msgs
)
#set(EIGEN_INCLUDE_DIR "/usr/local/include/eigen3")
find_package(Eigen3 REQUIRED)
find_package(OpenCV REQUIRED)
find_package(Ceres REQUIRED)
catkin_package(
INCLUDE_DIRS include
LIBRARIES polynomial cv_utils pnp
CATKIN_DEPENDS roscpp std_msgs
# DEPENDS system_lib
)
include_directories(
${catkin_INCLUDE_DIRS}
${EIGEN3_INCLUDE_DIR}
)
include_directories("include")
add_library(polynomial STATIC
src/math_utils/Polynomial.cpp)
target_link_libraries(polynomial ${Boost_LIBRARIES} )
add_library(pnp
src/cv_utils/dlt/dlt.cpp
src/cv_utils/pnp/pnp.cpp
src/cv_utils/pnp/linearpnp.cpp
src/cv_utils/pnp/nonlinearpnp.cpp)
target_link_libraries(pnp ${Boost_LIBRARIES} ${OpenCV_LIBS} ${CERES_LIBRARIES})
add_library(cv_utils STATIC
src/cv_utils.cc
)
target_link_libraries(cv_utils ${Boost_LIBRARIES} ${OpenCV_LIBS} )
add_executable(matIO_test src/mat_io_test.cpp )
target_link_libraries(matIO_test dw ${OpenCV_LIBS})
add_executable(sumpixel_test src/sumpixel_test.cpp )
target_link_libraries(sumpixel_test dw ${OpenCV_LIBS})