1
0
Fork 0
flightgear/utils/TerraSync/CMakeLists.txt
2011-01-05 23:47:08 +01:00

16 lines
305 B
CMake

find_package(SvnClient)
add_executable(terrasync terrasync.cxx)
target_link_libraries(terrasync
${SIMGEAR_LIBRARIES}
${ZLIB_LIBRARIES}
${WINSOCK_LIBRARY})
if(HAVE_SVN_CLIENT)
target_link_libraries(terrasync ${SVN_CLIENT_LIBRARIES})
endif()
install(TARGETS terrasync RUNTIME DESTINATION bin)