c022bb8d51
Remove ENABLE_IAX option Add an improved FGCom standalone as part of FG in utils directory
36 lines
687 B
CMake
36 lines
687 B
CMake
if(FLTK_FOUND)
|
|
if (EXISTS ${FLTK_FLUID_EXECUTABLE})
|
|
add_subdirectory(fgadmin)
|
|
else ()
|
|
message(STATUS "fluid executable not found, disabling fgadmin")
|
|
endif ()
|
|
endif()
|
|
|
|
# win32 is just excluded because of not having argument parsing there ...
|
|
if(RTI_FOUND AND NOT WIN32)
|
|
add_subdirectory(fgai)
|
|
endif()
|
|
|
|
if(ENABLE_FGELEV)
|
|
add_subdirectory(fgelev)
|
|
endif()
|
|
|
|
if(WITH_FGPANEL)
|
|
add_subdirectory(fgpanel)
|
|
endif()
|
|
|
|
if(ENABLE_FGVIEWER)
|
|
add_subdirectory(fgviewer)
|
|
endif()
|
|
|
|
if(ENABLE_GPSSMOOTH)
|
|
add_subdirectory(GPSsmooth)
|
|
endif()
|
|
|
|
if(ENABLE_TERRASYNC)
|
|
add_subdirectory(TerraSync)
|
|
endif()
|
|
|
|
if(ENABLE_FGCOM)
|
|
add_subdirectory(fgcom)
|
|
endif()
|