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
|
2016-01-30 01:59:16 +00:00
|
|
|
UGear_main.cxx
|
2012-02-25 00:05:39 +00:00
|
|
|
)
|
2011-01-05 16:19:42 +00:00
|
|
|
|
2020-09-29 11:30:28 +00:00
|
|
|
target_include_directories(GPSsmooth PRIVATE ${PLIB_INCLUDE_DIR})
|
|
|
|
target_include_directories(MIDGsmooth PRIVATE ${PLIB_INCLUDE_DIR})
|
|
|
|
target_include_directories(UGsmooth PRIVATE ${PLIB_INCLUDE_DIR})
|
|
|
|
|
2011-09-01 19:05:50 +00:00
|
|
|
target_link_libraries(GPSsmooth
|
2016-01-30 01:59:16 +00:00
|
|
|
SimGearCore
|
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
|
2016-01-30 01:59:16 +00:00
|
|
|
SimGearCore
|
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
|
2016-01-30 01:59:16 +00:00
|
|
|
SimGearCore
|
2012-02-25 00:48:13 +00:00
|
|
|
${PLIB_SG_LIBRARY}
|
|
|
|
${PLIB_UL_LIBRARY}
|
|
|
|
${ZLIB_LIBRARY}
|
2011-01-05 16:19:42 +00:00
|
|
|
)
|
|
|
|
|
2016-07-09 21:14:28 +00:00
|
|
|
install(TARGETS GPSsmooth MIDGsmooth UGsmooth RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|