]> git.mxchange.org Git - flightgear.git/blob - utils/TerraSync/CMakeLists.txt
Merge branch 'next' of gitorious.org:fg/flightgear into next
[flightgear.git] / utils / TerraSync / CMakeLists.txt
1
2 find_package(SvnClient)
3
4 add_executable(terrasync terrasync.cxx)
5
6 target_link_libraries(terrasync 
7         ${SIMGEAR_LIBRARIES}
8         ${ZLIB_LIBRARIES}
9     ${WINSOCK_LIBRARY})
10
11 if(HAVE_SVN_CLIENT)
12         target_link_libraries(terrasync ${SVN_CLIENT_LIBRARIES})
13 endif()
14
15
16 install(TARGETS terrasync RUNTIME DESTINATION bin)