2012-11-24 10:34:08 +01:00
|
|
|
# win32 is just excluded because of not having argument parsing there ...
|
|
|
|
if(RTI_FOUND AND NOT WIN32)
|
2014-04-30 20:34:05 +02:00
|
|
|
add_subdirectory(fgai)
|
2013-02-12 17:38:46 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_FGELEV)
|
|
|
|
add_subdirectory(fgelev)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_FGPANEL)
|
2014-04-30 20:34:05 +02:00
|
|
|
add_subdirectory(fgpanel)
|
2013-02-12 17:38:46 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_FGVIEWER)
|
|
|
|
add_subdirectory(fgviewer)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_GPSSMOOTH)
|
|
|
|
add_subdirectory(GPSsmooth)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_TERRASYNC)
|
|
|
|
add_subdirectory(TerraSync)
|
2013-05-19 16:29:49 +02:00
|
|
|
endif()
|
|
|
|
|
2013-09-27 16:05:45 +02:00
|
|
|
if(ENABLE_FGCOM)
|
|
|
|
add_subdirectory(fgcom)
|
2013-05-19 16:29:49 +02:00
|
|
|
endif()
|
2015-01-18 20:10:05 +00:00
|
|
|
|
|
|
|
if(ENABLE_STGMERGE)
|
|
|
|
add_subdirectory(stgmerge)
|
|
|
|
endif()
|
2016-11-20 12:52:21 +01:00
|
|
|
|
|
|
|
if(ENABLE_TRAFFIC)
|
|
|
|
add_subdirectory(traffic)
|
|
|
|
endif()
|
2016-12-03 14:14:06 +00:00
|
|
|
|
2016-12-19 17:54:37 +00:00
|
|
|
if (ENABLE_FGQCANVAS)
|
2017-11-16 10:02:26 +00:00
|
|
|
if(Qt5Core_VERSION VERSION_EQUAL 5.7 OR Qt5Core_VERSION VERSION_GREATER 5.7)
|
|
|
|
add_subdirectory(fgqcanvas)
|
|
|
|
else()
|
|
|
|
message(WARNING "FGQCanvas enabled, but Qt >= 5.7 is required for this feature")
|
|
|
|
endif()
|
2016-12-19 17:54:37 +00:00
|
|
|
endif()
|
2016-07-30 08:26:45 -04:00
|
|
|
|
|
|
|
if(ENABLE_DEMCONVERT)
|
|
|
|
if(GDALFOUND)
|
|
|
|
add_subdirectory(demconvert)
|
|
|
|
endif()
|
|
|
|
endif()
|