1
0
Fork 0
flightgear/src/Navaids/CMakeLists.txt
Christian Schmitt 7236541833 Add points of interest (POI) database to FGPositioned. Useful for maps and GPS instruments.
Can display country, city, towns and villages names worldwide.
2013-03-03 14:47:12 +01:00

46 lines
722 B
CMake

include(FlightGearComponent)
set(SOURCES
airways.cxx
fixlist.cxx
markerbeacon.cxx
navdb.cxx
navlist.cxx
navrecord.cxx
poidb.cxx
positioned.cxx
procedure.cxx
route.cxx
routePath.cxx
waypoint.cxx
LevelDXML.cxx
FlightPlan.cxx
NavDataCache.cxx
PositionedOctree.cxx
)
set(HEADERS
airways.hxx
fixlist.hxx
markerbeacon.hxx
navdb.hxx
navlist.hxx
navrecord.hxx
poidb.hxx
positioned.hxx
procedure.hxx
route.hxx
routePath.hxx
waypoint.hxx
LevelDXML.hxx
FlightPlan.hxx
NavDataCache.hxx
PositionedOctree.hxx
)
if (NOT SYSTEM_SQLITE)
list(APPEND SOURCES sqlite3.c)
list(APPEND HEADERS sqlite3.h)
endif()
flightgear_component(Navaids "${SOURCES}" "${HEADERS}")