Skip to content

Instantly share code, notes, and snippets.

View orensbruli's full-sized avatar

Esteban Martinena Guerrero orensbruli

View GitHub Profile
@orensbruli
orensbruli / CMakeLists.txt
Created March 7, 2023 06:04 — forked from dirk-thomas/CMakeLists.txt
CMakeLists.txt example with ament auto
cmake_minimum_required(VERSION 2.8.3)
project(foo)
if(NOT WIN32)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall")
endif()
# find dependencies
@orensbruli
orensbruli / CMakeLists.txt
Created March 7, 2023 06:03 — forked from dirk-thomas/CMakeLists.txt
CMakeLists.txt example with catkin
cmake_minimum_required(VERSION 2.8.3)
project(foo)
# find dependencies
find_package(catkin REQUIRED COMPONENTS message_generation roscpp std_msgs)
find_package(Boost REQUIRED)