]> git.mxchange.org Git - flightgear.git/blob - src/Autopilot/CMakeLists.txt
Merge commit 'refs/merge-requests/1579' of git://gitorious.org/fg/flightgear into...
[flightgear.git] / src / Autopilot / CMakeLists.txt
1 include(FlightGearComponent)
2
3 set(SOURCES
4         analogcomponent.cxx
5         autopilot.cxx
6         autopilotgroup.cxx
7         component.cxx
8         digitalcomponent.cxx
9         digitalfilter.cxx
10         flipflop.cxx
11         inputvalue.cxx
12         logic.cxx
13         pidcontroller.cxx
14         pisimplecontroller.cxx
15         predictor.cxx
16         route_mgr.cxx
17         )
18         
19 set(HEADERS
20         analogcomponent.hxx
21         autopilot.hxx
22         autopilotgroup.hxx
23         component.hxx
24         digitalcomponent.hxx
25         digitalfilter.hxx
26         flipflop.hxx
27         inputvalue.hxx
28         logic.hxx
29         pidcontroller.hxx
30         pisimplecontroller.hxx
31         predictor.hxx
32         route_mgr.hxx
33         )
34         
35 flightgear_component(Autopilot "${SOURCES}" "${HEADERS}")