43109feb0c
- wrap the ident-generating code into a class - move dme-in-range property into dme.cxx - move dme-ident generation into dme.cxx - support ident-button and volume for dme idents - use globals.get_aircraft_position instead of properties - some minor cleanup
25 lines
354 B
CMake
25 lines
354 B
CMake
include(FlightGearComponent)
|
|
|
|
set(SOURCES
|
|
audioident.cxx
|
|
soundgenerator.cxx
|
|
beacon.cxx
|
|
fg_fx.cxx
|
|
morse.cxx
|
|
sample_queue.cxx
|
|
voice.cxx
|
|
voiceplayer.cxx
|
|
)
|
|
|
|
set(HEADERS
|
|
audioident.hxx
|
|
soundgenerator.hxx
|
|
beacon.hxx
|
|
fg_fx.hxx
|
|
morse.hxx
|
|
sample_queue.hxx
|
|
voice.hxx
|
|
voiceplayer.hxx
|
|
)
|
|
|
|
flightgear_component(Sound "${SOURCES}" "${HEADERS}")
|