]> git.mxchange.org Git - flightgear.git/blob - src/Network/CMakeLists.txt
Report bad command-line args via message box.
[flightgear.git] / src / Network / 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         httpd.cxx
14         HTTPClient.cxx
15         igc.cxx
16         joyclient.cxx
17         jsclient.cxx
18         lfsglass.cxx
19         native.cxx
20         native_ctrls.cxx
21         native_fdm.cxx
22         native_gui.cxx
23         nmea.cxx
24         opengc.cxx
25         props.cxx
26         protocol.cxx
27         pve.cxx
28         ray.cxx
29         rul.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         httpd.hxx
43         HTTPClient.hxx
44         igc.hxx
45         joyclient.hxx
46         jsclient.hxx
47         lfsglass.hxx
48         native.hxx
49         native_ctrls.hxx
50         native_fdm.hxx
51         native_gui.hxx
52         nmea.hxx
53         opengc.hxx
54         props.hxx
55         protocol.hxx
56         pve.hxx
57         ray.hxx
58         rul.hxx
59         )
60
61 if(ENABLE_IAX)
62     list(APPEND SOURCES fgcom.cxx)
63     list(APPEND HEADERS fgcom.hxx)
64 endif()
65         
66 if(FG_JPEG_SERVER)
67     list(APPEND SOURCES jpg-httpd.cxx)
68     list(APPEND HEADERS jpg-httpd.hxx)
69 endif()
70         
71 flightgear_component(Network "${SOURCES}" "${HEADERS}")
72
73 if(RTI_FOUND)
74   add_subdirectory(HLA)
75 endif()
76