1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
build_example(
NAME socket-bound-static-routing
SOURCE_FILES socket-bound-static-routing.cc
LIBRARIES_TO_LINK
${libnetwork}
${libcsma}
${libpoint-to-point}
${libinternet}
)
build_example(
NAME socket-bound-tcp-static-routing
SOURCE_FILES socket-bound-tcp-static-routing.cc
LIBRARIES_TO_LINK
${libnetwork}
${libcsma}
${libpoint-to-point}
${libinternet}
${libapplications}
)
build_example(
NAME socket-options-ipv4
SOURCE_FILES socket-options-ipv4.cc
LIBRARIES_TO_LINK
${libnetwork}
${libcsma}
${libpoint-to-point}
${libinternet}
)
build_example(
NAME socket-options-ipv6
SOURCE_FILES socket-options-ipv6.cc
LIBRARIES_TO_LINK
${libnetwork}
${libcsma}
${libpoint-to-point}
${libinternet}
)
|