]> git.mxchange.org Git - flightgear.git/blob - src/Network/CMakeLists.txt
Don't create intermediate static libraries for build fgfs. (Speeds up rebuilds in...
[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         joyclient.cxx
15         jsclient.cxx
16         lfsglass.cxx
17         native.cxx
18         native_ctrls.cxx
19         native_fdm.cxx
20         native_gui.cxx
21         nmea.cxx
22         opengc.cxx
23         props.cxx
24         protocol.cxx
25         pve.cxx
26         ray.cxx
27         rul.cxx
28         )
29
30 set(HEADERS
31         ATC-Inputs.hxx
32         ATC-Main.hxx
33         ATC-Outputs.hxx
34         AV400.hxx
35         AV400Sim.hxx
36         AV400WSim.hxx
37         atlas.hxx
38         garmin.hxx
39         generic.hxx
40         httpd.hxx
41         joyclient.hxx
42         jsclient.hxx
43         lfsglass.hxx
44         native.hxx
45         native_ctrls.hxx
46         native_fdm.hxx
47         native_gui.hxx
48         nmea.hxx
49         opengc.hxx
50         props.hxx
51         protocol.hxx
52         pve.hxx
53         ray.hxx
54         rul.hxx
55         )
56         
57 if(FG_JPEG_SERVER)
58     list(APPEND SOURCES jpg-httpd.cxx)
59     list(APPEND HEADERS jpg-httpd.hxx)
60 endif()
61         
62 flightgear_component(Network "${SOURCES}" "${HEADERS}")
63
64 if(RTI_FOUND)
65   add_subdirectory(HLA)
66 endif()
67