-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
119 lines (94 loc) · 4.57 KB
/
CMakeLists.txt
File metadata and controls
119 lines (94 loc) · 4.57 KB
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
116
117
118
119
#
# Copyright (C) 2016 IIT-ADVR
# Author: Enrico Mingo, Luca Muratore
# email: enrico.mingo@iit.it, luca.muratore@iit.it
#
# 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)
FIND_PACKAGE(urdfdom REQUIRED)
FIND_PACKAGE(kdl_parser REQUIRED)
FIND_PACKAGE(Boost REQUIRED)
# find and use yaml-cpp
find_package(PkgConfig)
pkg_check_modules(YAML_CPP yaml-cpp=0.5.1)
message(STATUS "YAML_CPP Version: ${YAML_CPP_VERSION}")
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_LIBRARIES}
${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})
find_package(YCM REQUIRED)
include(YCMDefaultDirs)
ycm_default_dirs(${VARS_PREFIX})
target_include_directories(XBotCoreModel PUBLIC "$<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/src>"
"$<INSTALL_INTERFACE:${${VARS_PREFIX}_INSTALL_INCLUDEDIR}>")
set_target_properties(XBotCoreModel PROPERTIES VERSION ${${VARS_PREFIX}_VERSION}
SOVERSION ${${VARS_PREFIX}_VERSION})
install(DIRECTORY include/
DESTINATION "${${VARS_PREFIX}_INSTALL_INCLUDEDIR}"
FILES_MATCHING PATTERN "*.h")
install(TARGETS XBotCoreModel
EXPORT XBotCoreModel
ARCHIVE DESTINATION "${${VARS_PREFIX}_INSTALL_BINDIR}" COMPONENT lib
RUNTIME DESTINATION "${${VARS_PREFIX}_INSTALL_BINDIR}" COMPONENT bin
LIBRARY DESTINATION "${${VARS_PREFIX}_INSTALL_LIBDIR}" COMPONENT shlib)
#enabling it will add all XBotCoreModel dependencies as dependencies for third party users
set_property(GLOBAL APPEND PROPERTY ${VARS_PREFIX}_TARGETS XBotCoreModel)
include(InstallBasicPackageFiles)
install_basic_package_files(XBotCoreModel VARS_PREFIX ${VARS_PREFIX}
VERSION ${${VARS_PREFIX}_VERSION}
COMPATIBILITY SameMajorVersion
TARGETS_PROPERTY ${VARS_PREFIX}_TARGETS
NO_CHECK_REQUIRED_COMPONENTS_MACRO)
include(AddUninstallTarget)