1
0
Fork 0
flightgear/src/Navaids/CMakeLists.txt
James Turner 1b7b69b498 Create a real FlightPlan (and Leg) class
Convert the route-manager to use a flight-plan internally, and expose
flightplan, leg and procedure data to Nasal. Move the Level-D parser
into its own file.
2012-05-07 00:35:48 +01:00

33 lines
No EOL
467 B
CMake

include(FlightGearComponent)
set(SOURCES
airways.cxx
fixlist.cxx
markerbeacon.cxx
navdb.cxx
navlist.cxx
navrecord.cxx
positioned.cxx
procedure.cxx
route.cxx
routePath.cxx
waypoint.cxx
LevelDXML.cxx
)
set(HEADERS
airways.hxx
fixlist.hxx
markerbeacon.hxx
navdb.hxx
navlist.hxx
navrecord.hxx
positioned.hxx
procedure.hxx
route.hxx
routePath.hxx
waypoint.hxx
LevelDXML.hxx
)
flightgear_component(Navaids "${SOURCES}" "${HEADERS}")