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