]> git.mxchange.org Git - flightgear.git/blob - utils/TerraSync/CMakeLists.txt
Revert "Try to fix MSVC template instantiation issue with SGVec dependencies."
[flightgear.git] / utils / TerraSync / CMakeLists.txt
1
2
3 add_executable(terrasync terrasync.cxx)
4
5 target_link_libraries(terrasync
6         ${SIMGEAR_CORE_LIBRARIES}
7         ${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
8 )
9
10 if(LIBSVN_FOUND)
11         target_link_libraries(terrasync ${LIBSVN_LIBRARIES})
12         set_property(TARGET terrasync APPEND PROPERTY COMPILE_FLAGS "${APR_CFLAGS}")
13 endif()
14
15
16 install(TARGETS terrasync RUNTIME DESTINATION bin)