2016-08-03 18:45:08 +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.
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.8.3)
|
2016-09-08 21:23:19 +08:00
|
|
|
|
2016-08-03 18:57:56 +08:00
|
|
|
project(cartographer_ros_msgs)
|
2016-09-08 21:23:19 +08:00
|
|
|
|
|
|
|
set(CMAKE_CXX_FLAGS "-pthread -std=c++11 ${CMAKE_CXX_FLAGS}")
|
|
|
|
|
|
|
|
if(NOT CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE STREQUAL "")
|
|
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -DNDEBUG")
|
|
|
|
elseif(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -g -DNDEBUG")
|
|
|
|
elseif(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
|
|
message(FATAL_ERROR "Cartographer is too slow to be useful in debug mode.")
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Unknown CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
|
|
|
|
|
2016-08-03 18:45:08 +08:00
|
|
|
find_package(catkin REQUIRED COMPONENTS geometry_msgs message_generation)
|
|
|
|
|
|
|
|
add_message_files(
|
|
|
|
FILES
|
|
|
|
SubmapList.msg
|
|
|
|
TrajectorySubmapList.msg
|
|
|
|
SubmapEntry.msg
|
|
|
|
)
|
|
|
|
|
|
|
|
add_service_files(
|
|
|
|
FILES
|
|
|
|
SubmapQuery.srv
|
2016-10-05 18:28:29 +08:00
|
|
|
FinishTrajectory.srv
|
2016-08-03 18:45:08 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
generate_messages(
|
|
|
|
DEPENDENCIES
|
|
|
|
geometry_msgs
|
|
|
|
)
|
|
|
|
|
|
|
|
catkin_package()
|