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