1
0
Fork 0
flightgear/utils/CMakeLists.txt
Clément de l'Hamaide c022bb8d51 Move IAXClient library into 3rdparty directory
Remove ENABLE_IAX option
Add an improved FGCom standalone as part of FG in utils directory
2013-09-27 16:05:45 +02:00

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()