Unified hexapod repository, containing all modules
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- cmake_minimum_required(VERSION 3.8)
- project(hexapod_robot)
-
- if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
- add_compile_options(-Wall -Wextra -Wpedantic)
- endif()
-
- # find dependencies
- find_package(ament_cmake REQUIRED)
-
- install(
- DIRECTORY config launch
- DESTINATION share/${PROJECT_NAME}
- )
-
- ament_package()
|