]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/CMakeLists.txt
Run the filters for comm/navaids as required.
[flightgear.git] / src / Navaids / CMakeLists.txt
1 include(FlightGearComponent)
2
3 set(SOURCES
4         airways.cxx
5         fixlist.cxx
6         markerbeacon.cxx
7         navdb.cxx
8         navlist.cxx
9         navrecord.cxx
10         positioned.cxx
11         procedure.cxx
12         route.cxx
13         routePath.cxx
14         waypoint.cxx
15     LevelDXML.cxx
16     FlightPlan.cxx
17     NavDataCache.cxx
18     PositionedOctree.cxx
19         )
20
21 set(HEADERS
22     airways.hxx
23         fixlist.hxx
24         markerbeacon.hxx
25         navdb.hxx
26         navlist.hxx
27         navrecord.hxx
28         positioned.hxx
29         procedure.hxx
30         route.hxx
31         routePath.hxx
32         waypoint.hxx
33     LevelDXML.hxx
34     FlightPlan.hxx
35     NavDataCache.hxx
36     PositionedOctree.hxx
37     )
38
39 if (NOT SYSTEM_SQLITE)
40     list(APPEND SOURCES sqlite3.c)
41     list(APPEND HEADERS sqlite3.h)
42 endif()
43
44 flightgear_component(Navaids "${SOURCES}" "${HEADERS}")