2012-08-28 16:19:19 +02:00
|
|
|
add_executable(tg-construct-server
|
2011-10-24 17:45:39 +02:00
|
|
|
server.cxx)
|
|
|
|
|
2012-08-28 16:19:19 +02:00
|
|
|
target_link_libraries(tg-construct-server
|
2011-10-24 17:45:39 +02:00
|
|
|
${SIMGEAR_CORE_LIBRARIES}
|
|
|
|
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
|
|
|
)
|
|
|
|
|
2012-08-28 16:19:19 +02:00
|
|
|
install(TARGETS tg-construct-server RUNTIME DESTINATION bin)
|
2011-10-24 17:45:39 +02:00
|
|
|
|
|
|
|
|
2012-08-28 16:19:19 +02:00
|
|
|
add_executable(tg-construct-client
|
2011-10-24 17:45:39 +02:00
|
|
|
client.cxx)
|
|
|
|
|
2012-08-28 16:19:19 +02:00
|
|
|
target_link_libraries(tg-construct-client
|
2011-10-24 17:45:39 +02:00
|
|
|
${SIMGEAR_CORE_LIBRARIES}
|
|
|
|
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
|
|
|
)
|
|
|
|
|
2012-08-28 16:19:19 +02:00
|
|
|
install(TARGETS tg-construct-client RUNTIME DESTINATION bin)
|