2016-08-03 18:48:29 +08:00
|
|
|
# Copyright 2016 The Cartographer Authors
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2016-12-20 18:24:08 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8.12) # Ships with Ubuntu 14.04 (Trusty)
|
2016-08-03 18:48:29 +08:00
|
|
|
|
|
|
|
project(cartographer)
|
2016-12-20 18:24:08 +08:00
|
|
|
|
2016-08-03 18:48:29 +08:00
|
|
|
set(CARTOGRAPHER_MAJOR_VERSION 1)
|
|
|
|
set(CARTOGRAPHER_MINOR_VERSION 0)
|
|
|
|
set(CARTOGRAPHER_PATCH_VERSION 0)
|
|
|
|
set(CARTOGRAPHER_VERSION ${CARTOGRAPHER_MAJOR_VERSION}.${CARTOGRAPHER_MINOR_VERSION}.${CARTOGRAPHER_PATCH_VERSION})
|
|
|
|
set(CARTOGRAPHER_SOVERSION ${CARTOGRAPHER_MAJOR_VERSION}.${CARTOGRAPHER_MINOR_VERSION})
|
2017-11-22 23:29:01 +08:00
|
|
|
option(BUILD_GRPC "build Cartographer gRPC support" false)
|
2017-12-07 03:34:07 +08:00
|
|
|
# TODO(gaschler): Make this an option.
|
2017-11-22 23:29:01 +08:00
|
|
|
set(GRPC_PLUGIN_PATH "/usr/local/bin/grpc_cpp_plugin")
|
2016-08-03 18:48:29 +08:00
|
|
|
|
2017-02-09 22:57:54 +08:00
|
|
|
include("${PROJECT_SOURCE_DIR}/cmake/functions.cmake")
|
2016-10-12 19:39:03 +08:00
|
|
|
google_initialize_cartographer_project()
|
2016-10-12 21:38:12 +08:00
|
|
|
google_enable_testing()
|
2016-08-03 18:48:29 +08:00
|
|
|
|
2016-12-20 18:24:08 +08:00
|
|
|
find_package(Boost REQUIRED COMPONENTS iostreams)
|
2017-01-26 18:14:58 +08:00
|
|
|
find_package(Ceres REQUIRED COMPONENTS SparseLinearAlgebraLibrary)
|
2016-08-03 18:48:29 +08:00
|
|
|
find_package(Eigen3 REQUIRED)
|
|
|
|
find_package(LuaGoogle REQUIRED)
|
2017-11-15 15:49:33 +08:00
|
|
|
find_package(Protobuf 3.0.0 REQUIRED)
|
2016-12-20 18:24:08 +08:00
|
|
|
|
|
|
|
include(FindPkgConfig)
|
2016-10-14 21:14:46 +08:00
|
|
|
PKG_SEARCH_MODULE(CAIRO REQUIRED cairo>=1.12.16)
|
2016-08-03 18:48:29 +08:00
|
|
|
|
|
|
|
# Only build the documentation if we can find Sphinx.
|
|
|
|
find_package(Sphinx)
|
|
|
|
if(SPHINX_FOUND)
|
2016-08-23 23:22:04 +08:00
|
|
|
add_subdirectory("docs")
|
2016-08-03 18:48:29 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Install catkin package.xml
|
|
|
|
install(FILES package.xml DESTINATION share/cartographer)
|
|
|
|
|
2017-02-09 22:57:54 +08:00
|
|
|
set(CARTOGRAPHER_CONFIGURATION_FILES_DIRECTORY ${CMAKE_INSTALL_PREFIX}/share/cartographer/configuration_files
|
|
|
|
CACHE PATH ".lua configuration files directory")
|
|
|
|
|
2016-08-03 18:48:29 +08:00
|
|
|
install(DIRECTORY configuration_files DESTINATION share/cartographer/)
|
|
|
|
|
2016-10-12 19:39:03 +08:00
|
|
|
install(DIRECTORY cmake DESTINATION share/cartographer/)
|
|
|
|
|
2017-12-07 03:34:07 +08:00
|
|
|
file(GLOB_RECURSE ALL_LIBRARY_HDRS "*.h")
|
|
|
|
file(GLOB_RECURSE ALL_LIBRARY_SRCS "*.cc")
|
2016-12-20 18:24:08 +08:00
|
|
|
file(GLOB_RECURSE ALL_TESTS "*_test.cc")
|
|
|
|
file(GLOB_RECURSE ALL_EXECUTABLES "*_main.cc")
|
2017-12-07 03:34:07 +08:00
|
|
|
list(REMOVE_ITEM ALL_LIBRARY_SRCS ${ALL_TESTS})
|
|
|
|
list(REMOVE_ITEM ALL_LIBRARY_SRCS ${ALL_EXECUTABLES})
|
2017-11-22 23:29:01 +08:00
|
|
|
file(GLOB_RECURSE ALL_GRPC_FILES "cartographer_grpc/*")
|
|
|
|
if (NOT ${BUILD_GRPC})
|
2017-12-07 03:34:07 +08:00
|
|
|
list(REMOVE_ITEM ALL_LIBRARY_HDRS ${ALL_GRPC_FILES})
|
|
|
|
list(REMOVE_ITEM ALL_LIBRARY_SRCS ${ALL_GRPC_FILES})
|
|
|
|
list(REMOVE_ITEM ALL_TESTS ${ALL_GRPC_FILES})
|
|
|
|
list(REMOVE_ITEM ALL_EXECUTABLES ${ALL_GRPC_FILES})
|
2017-11-22 23:29:01 +08:00
|
|
|
endif()
|
2017-12-07 03:34:07 +08:00
|
|
|
set(INSTALL_SOURCE_HDRS ${ALL_LIBRARY_HDRS})
|
|
|
|
file(GLOB_RECURSE INTERNAL_HDRS "cartographer/internal/*.h"
|
|
|
|
"cartographer_grpc/internal/*.h")
|
|
|
|
list(REMOVE_ITEM INSTALL_SOURCE_HDRS ${INTERNAL_HDRS})
|
2016-12-20 18:24:08 +08:00
|
|
|
|
|
|
|
file(GLOB_RECURSE ALL_PROTOS "*.proto")
|
2017-11-22 23:29:01 +08:00
|
|
|
file(GLOB_RECURSE ALL_GRPC_SERVICES "*_service.proto")
|
|
|
|
list(REMOVE_ITEM ALL_PROTOS ALL_GRPC_SERVICES)
|
|
|
|
if (NOT ${BUILD_GRPC})
|
2017-12-07 03:34:07 +08:00
|
|
|
list(REMOVE_ITEM ALL_PROTOS ${ALL_GRPC_FILES})
|
2017-11-22 23:29:01 +08:00
|
|
|
endif()
|
|
|
|
|
2017-11-28 17:50:30 +08:00
|
|
|
# TODO(cschuet): Move proto compilation to separate function.
|
2016-12-20 18:24:08 +08:00
|
|
|
set(ALL_PROTO_SRCS)
|
|
|
|
set(ALL_PROTO_HDRS)
|
|
|
|
foreach(ABS_FIL ${ALL_PROTOS})
|
2017-02-09 22:57:54 +08:00
|
|
|
file(RELATIVE_PATH REL_FIL ${PROJECT_SOURCE_DIR} ${ABS_FIL})
|
2016-12-20 18:24:08 +08:00
|
|
|
get_filename_component(DIR ${REL_FIL} DIRECTORY)
|
|
|
|
get_filename_component(FIL_WE ${REL_FIL} NAME_WE)
|
|
|
|
|
2017-02-09 22:57:54 +08:00
|
|
|
list(APPEND ALL_PROTO_SRCS "${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.pb.cc")
|
|
|
|
list(APPEND ALL_PROTO_HDRS "${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.pb.h")
|
2016-12-20 18:24:08 +08:00
|
|
|
|
|
|
|
add_custom_command(
|
2017-02-09 22:57:54 +08:00
|
|
|
OUTPUT "${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.pb.cc"
|
|
|
|
"${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.pb.h"
|
2016-12-20 18:24:08 +08:00
|
|
|
COMMAND ${PROTOBUF_PROTOC_EXECUTABLE}
|
2017-02-09 22:57:54 +08:00
|
|
|
ARGS --cpp_out ${PROJECT_BINARY_DIR} -I
|
|
|
|
${PROJECT_SOURCE_DIR} ${ABS_FIL}
|
2016-12-20 18:24:08 +08:00
|
|
|
DEPENDS ${ABS_FIL}
|
|
|
|
COMMENT "Running C++ protocol buffer compiler on ${ABS_FIL}"
|
|
|
|
VERBATIM
|
|
|
|
)
|
|
|
|
endforeach()
|
|
|
|
set_source_files_properties(${ALL_PROTO_SRCS} ${ALL_PROTO_HDRS} PROPERTIES GENERATED TRUE)
|
2017-12-07 03:34:07 +08:00
|
|
|
list(APPEND ALL_LIBRARY_HDRS ${ALL_PROTO_HDRS})
|
|
|
|
list(APPEND ALL_LIBRARY_SRCS ${ALL_PROTO_SRCS})
|
2016-12-20 18:24:08 +08:00
|
|
|
|
2017-11-22 23:29:01 +08:00
|
|
|
if(${BUILD_GRPC})
|
|
|
|
set(ALL_GRPC_SERVICE_SRCS)
|
|
|
|
set(ALL_GRPC_SERVICE_HDRS)
|
|
|
|
foreach(ABS_FIL ${ALL_GRPC_SERVICES})
|
|
|
|
file(RELATIVE_PATH REL_FIL ${PROJECT_SOURCE_DIR} ${ABS_FIL})
|
|
|
|
get_filename_component(DIR ${REL_FIL} DIRECTORY)
|
|
|
|
get_filename_component(FIL_WE ${REL_FIL} NAME_WE)
|
|
|
|
|
|
|
|
list(APPEND ALL_GRPC_SERVICE_SRCS "${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.pb.cc")
|
|
|
|
list(APPEND ALL_GRPC_SERVICE_HDRS "${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.pb.h")
|
|
|
|
list(APPEND ALL_GRPC_SERVICE_SRCS "${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.grpc.pb.cc")
|
|
|
|
list(APPEND ALL_GRPC_SERVICE_HDRS "${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.grpc.pb.h")
|
|
|
|
|
|
|
|
add_custom_command(
|
2017-11-28 17:50:30 +08:00
|
|
|
OUTPUT "${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.grpc.pb.cc"
|
2017-11-22 23:29:01 +08:00
|
|
|
"${PROJECT_BINARY_DIR}/${DIR}/${FIL_WE}.grpc.pb.h"
|
|
|
|
COMMAND ${PROTOBUF_PROTOC_EXECUTABLE}
|
|
|
|
ARGS --grpc_out ${PROJECT_BINARY_DIR}
|
|
|
|
--cpp_out ${PROJECT_BINARY_DIR}
|
|
|
|
-I ${PROJECT_SOURCE_DIR}
|
|
|
|
--plugin=protoc-gen-grpc=${GRPC_PLUGIN_PATH}
|
|
|
|
${ABS_FIL}
|
|
|
|
DEPENDS ${ABS_FIL}
|
|
|
|
COMMENT "Running C++ protocol buffer compiler with gRPC support on ${ABS_FIL}"
|
|
|
|
VERBATIM
|
|
|
|
)
|
|
|
|
endforeach()
|
|
|
|
set_source_files_properties(${ALL_GRPC_SERVICE_SRCS} ${ALL_GRPC_SERVICE_HDRS} PROPERTIES GENERATED TRUE)
|
2017-12-07 03:34:07 +08:00
|
|
|
list(APPEND ALL_LIBRARY_HDRS ${ALL_GRPC_SERVICE_HDRS})
|
|
|
|
list(APPEND ALL_LIBRARY_SRCS ${ALL_GRPC_SERVICE_SRCS})
|
2017-11-22 23:29:01 +08:00
|
|
|
endif()
|
2017-12-20 21:40:33 +08:00
|
|
|
set(INSTALL_GENERATED_HDRS ${ALL_PROTO_HDRS} ${ALL_GRPC_SERVICE_HDRS})
|
2017-11-22 23:29:01 +08:00
|
|
|
|
2017-12-07 03:34:07 +08:00
|
|
|
add_library(${PROJECT_NAME} ${ALL_LIBRARY_HDRS} ${ALL_LIBRARY_SRCS})
|
2017-05-08 21:29:13 +08:00
|
|
|
|
|
|
|
configure_file(
|
|
|
|
${PROJECT_SOURCE_DIR}/cartographer/common/config.h.cmake
|
|
|
|
${PROJECT_BINARY_DIR}/cartographer/common/config.h)
|
|
|
|
|
2017-06-16 23:38:13 +08:00
|
|
|
google_binary(cartographer_autogenerate_ground_truth
|
|
|
|
SRCS
|
|
|
|
cartographer/ground_truth/autogenerate_ground_truth_main.cc
|
|
|
|
)
|
|
|
|
|
2017-05-08 21:29:13 +08:00
|
|
|
google_binary(cartographer_compute_relations_metrics
|
|
|
|
SRCS
|
|
|
|
cartographer/ground_truth/compute_relations_metrics_main.cc
|
|
|
|
)
|
2016-08-03 18:48:29 +08:00
|
|
|
|
2017-12-12 02:09:52 +08:00
|
|
|
if(${BUILD_GRPC})
|
|
|
|
google_binary(cartographer_grpc_server
|
|
|
|
SRCS
|
|
|
|
cartographer_grpc/map_builder_server_main.cc
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2017-05-03 22:55:13 +08:00
|
|
|
foreach(ABS_FIL ${ALL_TESTS})
|
|
|
|
file(RELATIVE_PATH REL_FIL ${PROJECT_SOURCE_DIR} ${ABS_FIL})
|
|
|
|
get_filename_component(DIR ${REL_FIL} DIRECTORY)
|
|
|
|
get_filename_component(FIL_WE ${REL_FIL} NAME_WE)
|
2017-05-09 00:09:39 +08:00
|
|
|
# Replace slashes as required for CMP0037.
|
|
|
|
string(REPLACE "/" "." TEST_TARGET_NAME "${DIR}/${FIL_WE}")
|
|
|
|
google_test("${TEST_TARGET_NAME}" ${ABS_FIL})
|
2017-11-28 17:50:30 +08:00
|
|
|
if(${BUILD_GRPC})
|
|
|
|
target_link_libraries("${TEST_TARGET_NAME}" PUBLIC grpc++)
|
|
|
|
endif()
|
2017-05-03 22:55:13 +08:00
|
|
|
endforeach()
|
|
|
|
|
2017-01-09 20:49:21 +08:00
|
|
|
target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC
|
2016-12-20 18:24:08 +08:00
|
|
|
"${EIGEN3_INCLUDE_DIR}")
|
2017-01-09 20:49:21 +08:00
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ${EIGEN3_LIBRARIES})
|
2016-12-20 18:24:08 +08:00
|
|
|
|
2017-01-09 20:49:21 +08:00
|
|
|
target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC
|
2016-12-20 18:24:08 +08:00
|
|
|
"${CERES_INCLUDE_DIRS}")
|
2017-01-09 20:49:21 +08:00
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ${CERES_LIBRARIES})
|
2016-12-20 18:24:08 +08:00
|
|
|
|
2017-01-09 20:49:21 +08:00
|
|
|
target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC
|
2016-12-20 18:24:08 +08:00
|
|
|
"${LUA_INCLUDE_DIR}")
|
2017-01-09 20:49:21 +08:00
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ${LUA_LIBRARIES})
|
2016-12-20 18:24:08 +08:00
|
|
|
|
2017-01-09 20:49:21 +08:00
|
|
|
target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC
|
2016-12-20 18:24:08 +08:00
|
|
|
"${Boost_INCLUDE_DIRS}")
|
2017-01-09 20:49:21 +08:00
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ${Boost_LIBRARIES})
|
2016-12-20 18:24:08 +08:00
|
|
|
|
2016-12-22 22:02:28 +08:00
|
|
|
# We expect find_package(Ceres) to have located these for us.
|
2017-01-09 20:49:21 +08:00
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC glog)
|
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC gflags)
|
2016-12-20 18:24:08 +08:00
|
|
|
|
2017-01-09 20:49:21 +08:00
|
|
|
target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC
|
2016-12-20 18:24:08 +08:00
|
|
|
"${CAIRO_INCLUDE_DIRS}")
|
2017-01-09 20:49:21 +08:00
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ${CAIRO_LIBRARIES})
|
2016-12-20 18:24:08 +08:00
|
|
|
|
2017-01-09 20:49:21 +08:00
|
|
|
target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC
|
2016-12-20 18:24:08 +08:00
|
|
|
${PROTOBUF_INCLUDE_DIR})
|
|
|
|
# TODO(hrapp): This should not explicitly list pthread and use
|
|
|
|
# PROTOBUF_LIBRARIES, but that failed on first try.
|
2017-01-09 20:49:21 +08:00
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ${PROTOBUF_LIBRARY} pthread)
|
2017-12-12 02:09:52 +08:00
|
|
|
if(${BUILD_GRPC})
|
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC grpc++)
|
|
|
|
endif()
|
2016-12-20 18:24:08 +08:00
|
|
|
|
|
|
|
# Add the binary directory first, so that port.h is included after it has
|
|
|
|
# been generated.
|
2017-01-09 20:49:21 +08:00
|
|
|
target_include_directories(${PROJECT_NAME} PUBLIC
|
2017-02-09 22:57:54 +08:00
|
|
|
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}>
|
|
|
|
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}>
|
2016-12-20 18:24:08 +08:00
|
|
|
$<INSTALL_INTERFACE:include>
|
2016-08-03 18:48:29 +08:00
|
|
|
)
|
|
|
|
|
2016-12-20 18:24:08 +08:00
|
|
|
# TODO(damonkohler): Create a testing library.
|
2017-01-09 20:49:21 +08:00
|
|
|
target_include_directories(${PROJECT_NAME} SYSTEM PRIVATE
|
2016-12-20 18:24:08 +08:00
|
|
|
"${GMOCK_INCLUDE_DIRS}")
|
2017-01-09 20:49:21 +08:00
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ${GMOCK_LIBRARY})
|
2016-12-20 18:24:08 +08:00
|
|
|
|
|
|
|
set(TARGET_COMPILE_FLAGS "${TARGET_COMPILE_FLAGS} ${GOOG_CXX_FLAGS}")
|
2017-01-09 20:49:21 +08:00
|
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES
|
2016-12-20 18:24:08 +08:00
|
|
|
COMPILE_FLAGS ${TARGET_COMPILE_FLAGS})
|
|
|
|
|
2017-01-09 20:49:21 +08:00
|
|
|
install(
|
|
|
|
TARGETS ${PROJECT_NAME}
|
|
|
|
EXPORT CartographerExport
|
|
|
|
ARCHIVE DESTINATION lib
|
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
)
|
2016-12-20 18:24:08 +08:00
|
|
|
|
2017-12-07 03:34:07 +08:00
|
|
|
foreach(HDR ${INSTALL_SOURCE_HDRS})
|
2017-02-09 22:57:54 +08:00
|
|
|
file(RELATIVE_PATH REL_FIL ${PROJECT_SOURCE_DIR} ${HDR})
|
2016-12-20 18:24:08 +08:00
|
|
|
get_filename_component(DIR ${REL_FIL} DIRECTORY)
|
|
|
|
install(
|
2017-12-07 03:34:07 +08:00
|
|
|
FILES ${HDR}
|
|
|
|
DESTINATION include/${DIR}
|
2016-12-20 18:24:08 +08:00
|
|
|
)
|
|
|
|
endforeach()
|
|
|
|
|
2017-12-07 03:34:07 +08:00
|
|
|
foreach(HDR ${INSTALL_GENERATED_HDRS})
|
2017-02-09 22:57:54 +08:00
|
|
|
file(RELATIVE_PATH REL_FIL ${PROJECT_BINARY_DIR} ${HDR})
|
2016-12-20 18:24:08 +08:00
|
|
|
get_filename_component(DIR ${REL_FIL} DIRECTORY)
|
|
|
|
install(
|
2017-12-07 03:34:07 +08:00
|
|
|
FILES ${HDR}
|
|
|
|
DESTINATION include/${DIR}
|
2016-12-20 18:24:08 +08:00
|
|
|
)
|
|
|
|
endforeach()
|
|
|
|
|
2017-01-09 20:49:21 +08:00
|
|
|
set(CARTOGRAPHER_CMAKE_DIR share/cartographer/cmake)
|
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
configure_package_config_file(
|
2016-08-03 18:48:29 +08:00
|
|
|
cartographer-config.cmake.in
|
2017-02-09 22:57:54 +08:00
|
|
|
${PROJECT_BINARY_DIR}/cmake/cartographer/cartographer-config.cmake
|
2017-01-09 20:49:21 +08:00
|
|
|
PATH_VARS CARTOGRAPHER_CMAKE_DIR
|
2016-08-03 18:48:29 +08:00
|
|
|
INSTALL_DESTINATION ${CMAKE_INSTALL_PREFIX}/share/cartographer
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
2017-01-09 20:49:21 +08:00
|
|
|
EXPORT CartographerExport
|
|
|
|
DESTINATION share/cartographer/cmake/
|
|
|
|
FILE CartographerTargets.cmake
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
2017-02-09 22:57:54 +08:00
|
|
|
FILES ${PROJECT_BINARY_DIR}/cmake/cartographer/cartographer-config.cmake
|
2017-01-09 20:49:21 +08:00
|
|
|
DESTINATION share/cartographer/
|
2016-08-03 18:48:29 +08:00
|
|
|
)
|