6446d67431
- ATC functions move to GroundController, which layers above remaining GroundNetwork functionality - dynamics owns both the groundNetwork and the ground controller.
25 lines
557 B
CMake
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}")
|