X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=utils%2FCMakeLists.txt;h=f176e749f846949492db6d4e2cc50ac3515f05a7;hb=ead3be2098e128729d2d78b89280025198460858;hp=f3caabb8ba4550b3cc9abbb64fc409f7eae60520;hpb=ceabadacc2c6ef6f8c1794ee2e93c6adce35c815;p=flightgear.git diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index f3caabb8b..f176e749f 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -1,7 +1,21 @@ add_subdirectory(TerraSync) add_subdirectory(fgviewer) +add_subdirectory(fgelev) add_subdirectory(GPSsmooth) if (FLTK_FOUND) - add_subdirectory(fgadmin) + if (EXISTS ${FLTK_FLUID_EXECUTABLE}) + add_subdirectory(fgadmin) + else () + message(STATUS "fluid executable not found, disabling fgadmin") + endif () endif (FLTK_FOUND) + +if (WITH_FGPANEL) + add_subdirectory(fgpanel) +endif (WITH_FGPANEL) + +# win32 is just excluded because of not having argument parsing there ... +if(RTI_FOUND AND NOT WIN32) + add_subdirectory(fgai) +endif(RTI_FOUND AND NOT WIN32)