1
0
Fork 0
flightgear/src/ATC/CMakeLists.txt
James Turner 6446d67431 Split GroundNetwork class down the middle
- ATC functions move to GroundController, which layers above
  remaining GroundNetwork functionality
- dynamics owns both the groundNetwork and the ground controller.
2015-12-10 15:53:05 -06:00

25 lines
557 B
CMake

include(FlightGearComponent)
set(SOURCES
atc_mgr.cxx
atcdialog.cxx
trafficcontrol.cxx
CommStation.cxx
ATISEncoder.cxx
MetarPropertiesATISInformationProvider.cxx
CurrentWeatherATISInformationProvider.cxx
GroundController.cxx
)
set(HEADERS
atc_mgr.hxx
atcdialog.hxx
trafficcontrol.hxx
CommStation.hxx
ATISEncoder.hxx
MetarPropertiesATISInformationProvider.hxx
CurrentWeatherATISInformationProvider.hxx
GroundController.hxx
)
flightgear_component(ATC "${SOURCES}" "${HEADERS}")