974b33e827
Rename library targets from celrs_* to cel* (celcrsf, celserial, cellogger, cellog) and add cel:: namespace aliases. Add cel::cel umbrella target that links all core libraries. Add ENABLE_TESTING option (default ON) to gate Unity/CMock fetch and test targets for downstream consumers.
5 lines
227 B
CMake
5 lines
227 B
CMake
add_executable(telemetry telemetry.c)
|
|
target_include_directories(telemetry PRIVATE "${CMAKE_SOURCE_DIR}")
|
|
target_compile_features(telemetry PRIVATE c_std_23)
|
|
target_link_libraries(telemetry PRIVATE cel::cel celserial_platform)
|