80e45f6d9b
Move the install line back inside the subdir, but pull in the extra config file so the install-bindir is defined.
40 lines
666 B
CMake
40 lines
666 B
CMake
# 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()
|
|
|
|
if(ENABLE_STGMERGE)
|
|
add_subdirectory(stgmerge)
|
|
endif()
|
|
|
|
if(ENABLE_TRAFFIC)
|
|
add_subdirectory(traffic)
|
|
endif()
|
|
|
|
if (ENABLE_FGQCANVAS)
|
|
add_subdirectory(fgqcanvas)
|
|
endif()
|