2012-01-01 01:12:00 -06:00
|
|
|
macro(build_serial)
|
2012-02-02 23:35:40 -06:00
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.4.6)
|
|
|
|
|
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)
|
|
|
|
|
|
|
|
|
|
# Set the build type. Options are:
|
|
|
|
|
# Coverage : w/ debug symbols, w/o optimization, w/ code-coverage
|
|
|
|
|
# Debug : w/ debug symbols, w/o optimization
|
|
|
|
|
# Release : w/o debug symbols, w/ optimization
|
|
|
|
|
# RelWithDebInfo : w/ debug symbols, w/ optimization
|
|
|
|
|
# MinSizeRel : w/o debug symbols, w/ optimization, stripped binaries
|
2012-02-05 22:31:06 -06:00
|
|
|
set(ROS_BUILD_TYPE Debug)
|
2012-02-02 23:35:40 -06:00
|
|
|
|
|
|
|
|
rosbuild_init()
|
|
|
|
|
|
|
|
|
|
#set the default path for built executables to the "bin" directory
|
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
|
|
|
|
|
#set the default path for built libraries to the "lib" directory
|
|
|
|
|
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
|
|
|
|
|
|
|
|
|
|
include_directories(include)
|
2012-02-03 01:43:42 -06:00
|
|
|
include_directories(vendor)
|
2012-02-02 23:35:40 -06:00
|
|
|
|
|
|
|
|
set(SERIAL_SRCS src/serial.cc)
|
|
|
|
|
if(UNIX)
|
|
|
|
|
list(APPEND SERIAL_SRCS src/impl/unix.cc)
|
|
|
|
|
else(UNIX)
|
|
|
|
|
list(APPEND SERIAL_SRCS src/impl/winows.cc)
|
|
|
|
|
endif(UNIX)
|
|
|
|
|
|
|
|
|
|
# Build the serial library
|
|
|
|
|
rosbuild_add_library(${PROJECT_NAME} ${SERIAL_SRCS})
|
|
|
|
|
|
2012-06-13 20:13:57 -05:00
|
|
|
# Collect Link Libraries
|
|
|
|
|
set(SERIAL_LINK_LIBS ${PROJECT_NAME})
|
|
|
|
|
if(UNIX AND NOT APPLE)
|
|
|
|
|
list(APPEND SERIAL_LINK_LIBS rt pthread)
|
|
|
|
|
endif(UNIX AND NOT APPLE)
|
|
|
|
|
|
2012-02-02 23:35:40 -06:00
|
|
|
# Build example
|
|
|
|
|
rosbuild_add_executable(serial_example examples/serial_example.cc)
|
2012-06-13 20:13:57 -05:00
|
|
|
target_link_libraries(serial_example ${SERIAL_LINK_LIBS})
|
2012-02-02 23:35:40 -06:00
|
|
|
|
|
|
|
|
# Create unit tests
|
|
|
|
|
rosbuild_add_gtest(serial_tests tests/serial_tests.cc)
|
|
|
|
|
target_link_libraries(serial_tests ${PROJECT_NAME})
|
2012-01-23 14:28:14 -06:00
|
|
|
|
2012-01-01 01:12:00 -06:00
|
|
|
endmacro(build_serial)
|