]> git.mxchange.org Git - flightgear.git/blob - CMakeLists.txt
48036389b6ce9f8c49b7993cb65c204a9a60b34c
[flightgear.git] / CMakeLists.txt
1 include(FlightGearComponent)
2
3 set(SOURCES
4         ATC-Inputs.cxx
5         ATC-Main.cxx
6         ATC-Outputs.cxx
7         AV400.cxx
8         AV400Sim.cxx
9         AV400WSim.cxx
10         atlas.cxx
11         garmin.cxx
12         generic.cxx
13         HTTPClient.cxx
14         igc.cxx
15         joyclient.cxx
16         jsclient.cxx
17         lfsglass.cxx
18         native.cxx
19         native_ctrls.cxx
20         native_fdm.cxx
21         native_gui.cxx
22         nmea.cxx
23         opengc.cxx
24         props.cxx
25         protocol.cxx
26         pve.cxx
27         ray.cxx
28         rul.cxx
29         jpg-httpd.cxx
30         )
31
32 set(HEADERS
33         ATC-Inputs.hxx
34         ATC-Main.hxx
35         ATC-Outputs.hxx
36         AV400.hxx
37         AV400Sim.hxx
38         AV400WSim.hxx
39         atlas.hxx
40         garmin.hxx
41         generic.hxx
42         HTTPClient.hxx
43         igc.hxx
44         joyclient.hxx
45         jsclient.hxx
46         lfsglass.hxx
47         native.hxx
48         native_ctrls.hxx
49         native_fdm.hxx
50         native_gui.hxx
51         nmea.hxx
52         opengc.hxx
53         props.hxx
54         protocol.hxx
55         pve.hxx
56         ray.hxx
57         rul.hxx
58         jpg-httpd.hxx
59         )
60
61 if(ENABLE_IAX)
62     list(APPEND SOURCES fgcom.cxx)
63     list(APPEND HEADERS fgcom.hxx)
64 endif()
65         
66 flightgear_component(Network "${SOURCES}" "${HEADERS}")
67
68 if(RTI_FOUND)
69   add_subdirectory(HLA)
70 endif()
71
72 add_subdirectory(http)
73