]> git.mxchange.org Git - flightgear.git/blob - utils/GPSsmooth/CMakeLists.txt
Fix (nearly) all the std:: namespace violations in headers, in preparation for fixing...
[flightgear.git] / utils / GPSsmooth / CMakeLists.txt
1
2 add_executable(GPSsmooth gps.cxx gps_main.cxx)
3 add_executable(MIDGsmooth MIDG-II.cxx MIDG_main.cxx)
4 add_executable(UGsmooth UGear.cxx UGear_command.cxx UGear_main.cxx UGear_telnet.cxx)
5
6 target_link_libraries(GPSsmooth
7         ${SIMGEAR_CORE_LIBRARIES}
8         ${PLIB_SG_LIBRARY}
9         ${PLIB_UL_LIBRARY}
10         ${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
11         ${WINMM_LIBRARY}
12 )
13
14 target_link_libraries(MIDGsmooth
15         ${SIMGEAR_CORE_LIBRARIES}
16         ${PLIB_SG_LIBRARY}
17         ${PLIB_UL_LIBRARY}
18         ${WINMM_LIBRARY}
19         ${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
20 )
21
22 target_link_libraries(UGsmooth
23         ${SIMGEAR_CORE_LIBRARIES}
24         ${PLIB_SG_LIBRARY}
25         ${PLIB_UL_LIBRARY}
26         ${WINMM_LIBRARY}
27         ${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
28 )
29
30 install(TARGETS GPSsmooth MIDGsmooth UGsmooth RUNTIME DESTINATION bin)