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