2010-11-30 10:08:30 +00:00
|
|
|
|
|
|
|
find_package(SvnClient)
|
|
|
|
|
|
|
|
add_executable(terrasync terrasync.cxx)
|
|
|
|
|
|
|
|
target_link_libraries(terrasync
|
|
|
|
${SIMGEAR_LIBRARIES}
|
2011-01-05 22:47:08 +00:00
|
|
|
${ZLIB_LIBRARIES}
|
|
|
|
${WINSOCK_LIBRARY})
|
2010-11-30 10:08:30 +00:00
|
|
|
|
|
|
|
if(HAVE_SVN_CLIENT)
|
|
|
|
target_link_libraries(terrasync ${SVN_CLIENT_LIBRARIES})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
install(TARGETS terrasync RUNTIME DESTINATION bin)
|