]> git.mxchange.org Git - flightgear.git/blob - utils/GPSsmooth/CMakeLists.txt
Merge branch 'next' into durk-atc
[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_IO_LIBRARY}
8         ${SIMGEAR_MISC_LIBRARY}
9         ${SIMGEAR_STRUCTURE_LIBRARY}
10         ${SIMGEAR_TIMING_LIBRARY}
11         ${SIMGEAR_DEBUG_LIBRARY}
12         ${PLIB_SG_LIBRARY}
13         ${PLIB_UL_LIBRARY}
14         ${ZLIB_LIBRARIES}
15         ${WINMM_LIBRARY}
16         ${WINSOCK_LIBRARY}
17         ${ZLIB_LIBRARIES}
18         ${RT_LIBRARY}
19 )
20
21 target_link_libraries(MIDGsmooth 
22         ${SIMGEAR_IO_LIBRARY}
23         ${SIMGEAR_MATH_LIBRARY}
24         ${SIMGEAR_SERIAL_LIBRARY}
25         ${SIMGEAR_STRUCTURE_LIBRARY}
26         ${SIMGEAR_TIMING_LIBRARY}
27         ${SIMGEAR_DEBUG_LIBRARY}
28         ${PLIB_SG_LIBRARY}
29         ${PLIB_UL_LIBRARY}
30         ${WINMM_LIBRARY}
31         ${WINSOCK_LIBRARY}
32         ${RT_LIBRARY}
33 )
34
35 target_link_libraries(UGsmooth 
36         ${SIMGEAR_DEBUG_LIBRARY}
37         ${SIMGEAR_IO_LIBRARY}
38         ${SIMGEAR_MATH_LIBRARY}
39         ${SIMGEAR_MISC_LIBRARY}
40         ${SIMGEAR_SERIAL_LIBRARY}
41         ${SIMGEAR_STRUCTURE_LIBRARY}
42         ${SIMGEAR_TIMING_LIBRARY}
43         ${PLIB_SG_LIBRARY}
44         ${PLIB_UL_LIBRARY}
45         ${WINMM_LIBRARY}
46         ${WINSOCK_LIBRARY}
47         ${ZLIB_LIBRARIES}
48         ${RT_LIBRARY}
49 )
50
51 install(TARGETS GPSsmooth MIDGsmooth UGsmooth RUNTIME DESTINATION bin)