1
0
Fork 0
terragear/src/BuildTiles/Parallel/CMakeLists.txt

21 lines
450 B
Text
Raw Normal View History

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