Created
December 16, 2014 14:44
-
-
Save jbohren/79c467e429704497c556 to your computer and use it in GitHub Desktop.
simplest roscpp cmakelists for testing small snippets of roscpp code (no catkin required)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 2.8) | |
project(a_ros_experiment) | |
find_package(roscpp REQUIRED) | |
include_directories(${roscpp_INCLUDE_DIRS}) | |
add_executable(main main.cpp) | |
target_link_libraries(main ${roscpp_LIBRARIES}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment