-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
50 lines (43 loc) · 1.12 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
cmake_minimum_required(VERSION 2.8.3)
project(darwin_framework)
find_package(catkin REQUIRED)
catkin_package(
INCLUDE_DIRS include
LIBRARIES darwin_framework
)
include_directories(include)
add_library(darwin_framework
src/math/Plane.cpp
src/math/Vector.cpp
src/math/Point.cpp
src/math/Matrix.cpp
src/motion/JointData.cpp
src/motion/MotionStatus.cpp
src/motion/Kinematics.cpp
src/motion/MotionManager.cpp
src/motion/modules/Action.cpp
src/motion/modules/Head.cpp
src/motion/modules/Walking.cpp
src/CM730.cpp
src/MX28.cpp
src/vision/BallTracker.cpp
src/vision/BallFollower.cpp
src/vision/Camera.cpp
src/vision/ColorFinder.cpp
src/vision/ImgProcess.cpp
src/vision/Image.cpp
src/minIni/minIni.c
)
#############
## Install ##
#############
install(TARGETS darwin_framework
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
FILES_MATCHING PATTERN "*.h"
PATTERN ".svn" EXCLUDE
)