Includes:
- refactor build_lib and build_lib_example macros
- unify src and contrib macros
- replace macro with function not to leak definitions
- parse list of arguments
- different cmake-format file for modules to list one item per line
11 lines
202 B
CMake
11 lines
202 B
CMake
if(${ENABLE_REALTIME})
|
|
build_example(
|
|
NAME realtime-udp-echo
|
|
SOURCE_FILES realtime-udp-echo.cc
|
|
LIBRARIES_TO_LINK
|
|
${libcsma}
|
|
${libinternet}
|
|
${libapplications}
|
|
)
|
|
endif()
|