-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
115 lines (93 loc) · 4.23 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#
# Copyright (C) 2016 IIT-ADVR
# Author: Enrico Mingo, Luca Muratore
# email: [email protected], [email protected]
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
cmake_minimum_required(VERSION 2.8.12)
if(COMMAND cmake_policy)
cmake_policy(SET CMP0003 OLD)
cmake_policy(SET CMP0005 NEW)
cmake_policy(SET CMP0017 NEW)
endif(COMMAND cmake_policy)
include(ExternalProject)
PROJECT(XBotCoreModel)
# C++ 11
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(FATAL_ERROR "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
endif()
#list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules/")
FIND_PACKAGE(srdfdom_advr REQUIRED)
link_directories(${srdfdom_advr_LIBRARY_DIRS})
FIND_PACKAGE(urdf REQUIRED)
include_directories(SYSTEM ${urdf_INCLUDE_DIRS})
message(STATUS "urdf_INCLUDE_DIRS: ${urdf_INCLUDE_DIRS}")
link_directories(SYSTEM ${urdf_LIBRARY_DIRS})
message(STATUS "urdf_LIBRARY_DIRS: ${urdf_LIBRARY_DIRS}")
message(STATUS "urdf_LIBRARIES: ${urdf_LIBRARIES}")
FIND_PACKAGE(urdfdom REQUIRED)
FIND_PACKAGE(kdl_parser REQUIRED)
message(STATUS "kdl_parser_INCLUDE_DIRS: ${kdl_parser_INCLUDE_DIRS}")
link_directories(SYSTEM ${kdl_parser_LIBRARY_DIRS})
message(STATUS "kdl_parser_LIBRARY_DIRS: ${kdl_parser_LIBRARY_DIRS}")
message(STATUS "kdl_parser_LIBRARIES: ${kdl_parser_LIBRARIES}")
FIND_PACKAGE(Boost REQUIRED)
INCLUDE_DIRECTORIES(include
${srdfdom_advr_INCLUDE_DIRS}
${urdfdom_INCLUDE_DIRS}
${kdl_parser_INCLUDE_DIRS})
# for every file in INCLUDES CMake already sets the property HEADER_FILE_ONLY
file(GLOB_RECURSE XBotCoreModel_INCLUDES "${CMAKE_CURRENT_SOURCE_DIR}/include" *.h*)
ADD_LIBRARY(XBotCoreModel SHARED ${XBotCoreModel_INCLUDES} src/XBotCoreModel.cpp)
TARGET_LINK_LIBRARIES(XBotCoreModel ${srdfdom_advr_LIBRARIES}
${urdfdom_LIBRARIES}
${Boost_LIBRARIES}
yaml-cpp
${kdl_parser_LIBRARIES}
)
target_include_directories( XBotCoreModel PUBLIC
${srdfdom_advr_INCLUDE_DIRS}
${urdfdom_INCLUDE_DIRS}
${kdl_parser_INCLUDE_DIRS}
)
########################################################################
set(VARS_PREFIX "XBotCoreModel")
set(XBotCoreModel_MAJOR_VERSION 0)
set(XBotCoreModel_MINOR_VERSION 2)
set(XBotCoreModel_PATCH_VERSION 0)
set(XBotCoreModel_VERSION ${XBotCoreModel_MAJOR_VERSION}.${XBotCoreModel_MINOR_VERSION}.${XBotCoreModel_PATCH_VERSION})
#enabling it will add all XBotCoreModel dependencies as dependencies for third party users
set_property(GLOBAL APPEND PROPERTY ${VARS_PREFIX}_TARGETS XBotCoreModel)
install(TARGETS ${PROJECT_NAME}
DESTINATION "lib"
)
install(DIRECTORY include/
DESTINATION "include/${PROJECT_NAME}"
FILES_MATCHING PATTERN "*.h"
)
set(LIBRARY_NAME "${CMAKE_PROJECT_NAME}")
# Configuration installation
configure_file("${CMAKE_PROJECT_NAME}Config.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}Config.cmake"
@ONLY)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}Config.cmake"
DESTINATION "share/${CMAKE_PROJECT_NAME}")