2011-01-05 17:19:42 +01:00
|
|
|
|
2012-02-25 01:05:39 +01:00
|
|
|
add_executable(GPSsmooth
|
|
|
|
gps.cxx gps.hxx
|
|
|
|
gps_main.cxx
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(MIDGsmooth
|
|
|
|
MIDG-II.cxx MIDG-II.hxx
|
|
|
|
MIDG_main.cxx
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(UGsmooth
|
2011-10-18 12:14:20 +01:00
|
|
|
UGear.cxx UGear.hxx
|
|
|
|
UGear_command.cxx UGear_command.hxx
|
2012-02-25 01:05:39 +01:00
|
|
|
UGear_telnet.cxx UGear_telnet.hxx
|
2011-10-18 12:14:20 +01:00
|
|
|
UGear_main.cxx
|
2012-02-25 01:05:39 +01:00
|
|
|
)
|
2011-01-05 17:19:42 +01:00
|
|
|
|
2011-09-01 21:05:50 +02:00
|
|
|
target_link_libraries(GPSsmooth
|
2012-02-25 01:05:39 +01:00
|
|
|
${SIMGEAR_CORE_LIBRARIES}
|
|
|
|
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
2012-02-25 01:48:13 +01:00
|
|
|
${PLIB_SG_LIBRARY}
|
|
|
|
${PLIB_UL_LIBRARY}
|
2011-01-05 17:19:42 +01:00
|
|
|
)
|
|
|
|
|
2011-09-01 21:05:50 +02:00
|
|
|
target_link_libraries(MIDGsmooth
|
2012-02-25 01:05:39 +01:00
|
|
|
${SIMGEAR_CORE_LIBRARIES}
|
|
|
|
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
2012-02-25 01:48:13 +01:00
|
|
|
${PLIB_SG_LIBRARY}
|
|
|
|
${PLIB_UL_LIBRARY}
|
2011-01-05 17:19:42 +01:00
|
|
|
)
|
|
|
|
|
2011-09-01 21:05:50 +02:00
|
|
|
target_link_libraries(UGsmooth
|
2012-02-25 01:05:39 +01:00
|
|
|
${SIMGEAR_CORE_LIBRARIES}
|
|
|
|
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
2012-02-25 01:48:13 +01:00
|
|
|
${PLIB_SG_LIBRARY}
|
|
|
|
${PLIB_UL_LIBRARY}
|
|
|
|
${ZLIB_LIBRARY}
|
2011-01-05 17:19:42 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
install(TARGETS GPSsmooth MIDGsmooth UGsmooth RUNTIME DESTINATION bin)
|