104 lines
3.3 KiB
CMake
104 lines
3.3 KiB
CMake
cmake_minimum_required(VERSION 2.8.3)
|
|
project(audio_core)
|
|
|
|
set(CMAKE_VERBOSE_MAKEFILE ON)
|
|
|
|
## Find catkin macros and libraries
|
|
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
|
|
## is used, also find other catkin packages
|
|
find_package(catkin REQUIRED COMPONENTS
|
|
roscpp
|
|
rospy
|
|
std_msgs
|
|
audio_msg
|
|
message_generation
|
|
river
|
|
)
|
|
|
|
################################################
|
|
## Declare ROS messages, services and actions ##
|
|
################################################
|
|
|
|
## To declare and build messages, services or actions from within this
|
|
## package, follow these steps:
|
|
## * Let MSG_DEP_SET be the set of packages whose message types you use in
|
|
## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
|
|
## * In the file package.xml:
|
|
## * add a build_depend and a run_depend tag for each package in MSG_DEP_SET
|
|
## * If MSG_DEP_SET isn't empty the following dependencies might have been
|
|
## pulled in transitively but can be declared for certainty nonetheless:
|
|
## * add a build_depend tag for "message_generation"
|
|
## * add a run_depend tag for "message_runtime"
|
|
## * In this file (CMakeLists.txt):
|
|
## * add "message_generation" and every package in MSG_DEP_SET to
|
|
## find_package(catkin REQUIRED COMPONENTS ...)
|
|
## * add "message_runtime" and every package in MSG_DEP_SET to
|
|
## catkin_package(CATKIN_DEPENDS ...)
|
|
## * uncomment the add_*_files sections below as needed
|
|
## and list every .msg/.srv/.action file to be processed
|
|
## * uncomment the generate_messages entry below
|
|
## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)
|
|
|
|
## Generate services in the 'srv' folder
|
|
add_service_files(
|
|
FILES
|
|
create.srv
|
|
remove.srv
|
|
write.srv
|
|
getBufferTime.srv
|
|
)
|
|
|
|
## Generate added messages and services with any dependencies listed here
|
|
generate_messages(
|
|
DEPENDENCIES
|
|
std_msgs
|
|
)
|
|
|
|
###################################
|
|
## catkin specific configuration ##
|
|
###################################
|
|
## The catkin_package macro generates cmake config files for your package
|
|
## Declare things to be passed to dependent projects
|
|
## INCLUDE_DIRS: uncomment this if you package contains header files
|
|
## LIBRARIES: libraries you create in this project that dependent projects also need
|
|
## CATKIN_DEPENDS: catkin_packages dependent projects also need
|
|
## DEPENDS: system dependencies of this project that dependent projects also need
|
|
catkin_package()
|
|
|
|
###########
|
|
## Build ##
|
|
###########
|
|
|
|
## Specify additional locations of header files
|
|
## Your package locations should be listed before other locations
|
|
include_directories(
|
|
src/
|
|
${catkin_INCLUDE_DIRS}
|
|
)
|
|
|
|
## Declare a cpp executable
|
|
add_executable(audio_core_node
|
|
src/debug.cpp
|
|
src/main.cpp
|
|
)
|
|
|
|
set(CMAKE_CXX_FLAGS "-std=c++11 -DDEBUG_LEVEL=3 -DDEBUG=1 -D__CPP_VERSION__=2011")
|
|
|
|
## Add cmake target dependencies of the executable/library
|
|
## as an example, message headers may need to be generated before nodes
|
|
add_dependencies(${PROJECT_NAME}_node audio_core_generate_messages_cpp)
|
|
|
|
## Specify libraries to link a library or executable target against
|
|
target_link_libraries(${PROJECT_NAME}_node
|
|
${catkin_LIBRARIES}
|
|
)
|
|
|
|
#############
|
|
## Install ##
|
|
#############
|
|
|
|
## Mark executables and/or libraries for installation
|
|
install(TARGETS ${PROJECT_NAME}_node
|
|
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
|
|
)
|