]> git.mxchange.org Git - flightgear.git/blobdiff - src/GUI/CMakeLists.txt
toggle fullscreen: also adapt GUI plane when resizing
[flightgear.git] / src / GUI / CMakeLists.txt
index 428cdcb9e905fb2e683b0190b0cf8a5aebc93655..b021d840b13c711aa42c51990ed9913ab1af7ee2 100644 (file)
@@ -2,31 +2,44 @@ include(FlightGearComponent)
 
 set(SOURCES
        AirportList.cxx
+       CanvasWidget.cxx
        MapWidget.cxx
-       SafeTexFont.cxx
        WaypointList.cxx
        dialog.cxx
+       FGPUIDialog.cxx
        fonts.cxx
        gui.cxx
        gui_funcs.cxx
        layout-props.cxx
        layout.cxx
        menubar.cxx
+       FGPUIMenuBar.cxx
        new_gui.cxx
        property_list.cxx
+       FGFontCache.cxx
+       FGColor.cxx
        )
 
 set(HEADERS
        AirportList.hxx
+       CanvasWidget.hxx
        MapWidget.hxx
-       SafeTexFont.hxx
        WaypointList.hxx
        dialog.hxx
+       FGPUIDialog.hxx
        gui.h
        layout.hxx
        menubar.hxx
+       FGPUIMenuBar.hxx
        new_gui.hxx
        property_list.hxx
+       FGFontCache.hxx
+       FGColor.hxx
        )
                
+if (APPLE)
+    list(APPEND HEADERS FGCocoaMenuBar.hxx)
+    list(APPEND SOURCES FGCocoaMenuBar.mm)
+endif()
+               
 flightgear_component(GUI "${SOURCES}" "${HEADERS}")