19 lines
415 B
CMake
19 lines
415 B
CMake
cmake_minimum_required(VERSION 3.8 FATAL_ERROR)
|
|
|
|
add_library(messaging INTERFACE)
|
|
|
|
add_library(skullc::messaging ALIAS messaging)
|
|
|
|
target_include_directories(messaging
|
|
INTERFACE
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/Inc>
|
|
$<INSTALL_INTERFACE:include>
|
|
)
|
|
|
|
set_target_properties(messaging
|
|
PROPERTIES
|
|
CXX_STANDARD 17
|
|
)
|
|
|
|
skullc_install_packages(skullc messaging ${SKULLC_VERSION})
|