]> git.mxchange.org Git - flightgear.git/blob - src/GUI/CMakeLists.txt
Cocoa menu-bar implementation.
[flightgear.git] / src / GUI / CMakeLists.txt
1 include(FlightGearComponent)
2
3 set(SOURCES
4         AirportList.cxx
5         MapWidget.cxx
6         SafeTexFont.cxx
7         WaypointList.cxx
8         dialog.cxx
9         FGPUIDialog.cxx
10         fonts.cxx
11         gui.cxx
12         gui_funcs.cxx
13         layout-props.cxx
14         layout.cxx
15         menubar.cxx
16         FGPUIMenuBar.cxx
17         new_gui.cxx
18         property_list.cxx
19         FGFontCache.cxx
20         FGColor.cxx
21         )
22
23 set(HEADERS
24         AirportList.hxx
25         MapWidget.hxx
26         SafeTexFont.hxx
27         WaypointList.hxx
28         dialog.hxx
29         FGPUIDialog.hxx
30         gui.h
31         layout.hxx
32         menubar.hxx
33         FGPUIMenuBar.hxx
34         new_gui.hxx
35         property_list.hxx
36         FGFontCache.hxx
37         FGColor.hxx
38         )
39                 
40 if (APPLE)
41     list(APPEND HEADERS FGCocoaMenuBar.hxx)
42     list(APPEND SOURCES FGCocoaMenuBar.mm)
43 endif()
44                 
45 flightgear_component(GUI "${SOURCES}" "${HEADERS}")