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