7dc8db8ef5
Also removes "itm.cpp" from CMake to avoid code duplication/warnings, since this the file is already included by radio.cxx.
15 lines
167 B
CMake
15 lines
167 B
CMake
include(FlightGearComponent)
|
|
|
|
set(SOURCES
|
|
antenna.cxx
|
|
radio.cxx
|
|
)
|
|
|
|
set(HEADERS
|
|
antenna.hxx
|
|
radio.hxx
|
|
)
|
|
|
|
|
|
flightgear_component(Radio "${SOURCES}" "${HEADERS}")
|
|
|