1
0
Fork 0
flightgear/src/Aircraft/CMakeLists.txt
James Turner e3d032942e Move aircraft-performance code into a public API
Upcoming flight-planning changes want to use the perf computation code
in route-path, so move it to a public class, and implement some of the
missing functionality, especially correct GS computation for altitude.
2018-08-26 14:39:42 +01:00

22 lines
344 B
CMake

include(FlightGearComponent)
set(SOURCES
controls.cxx
replay.cxx
flightrecorder.cxx
FlightHistory.cxx
initialstate.cxx
AircraftPerformance.cxx
)
set(HEADERS
controls.hxx
replay.hxx
flightrecorder.hxx
FlightHistory.hxx
initialstate.hxx
AircraftPerformance.hxx
)
flightgear_component(Aircraft "${SOURCES}" "${HEADERS}")