20 lines
429 B
CMake
20 lines
429 B
CMake
|
|
set(base_examples
|
||
|
|
tsn-point2point-netanim
|
||
|
|
tsn-switched-withFRER-netanim
|
||
|
|
)
|
||
|
|
foreach(
|
||
|
|
example
|
||
|
|
${base_examples}
|
||
|
|
)
|
||
|
|
build_lib_example(
|
||
|
|
NAME ${example}
|
||
|
|
SOURCE_FILES ${example}.cc
|
||
|
|
LIBRARIES_TO_LINK ${libtrace}
|
||
|
|
${libcore}
|
||
|
|
${libnetwork}
|
||
|
|
${libethernet}
|
||
|
|
${libtraffic-generator}
|
||
|
|
${libtsn}
|
||
|
|
)
|
||
|
|
endforeach()
|