]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/CMakeLists.txt
Fix crash starting at heliport.
[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         poidb.cxx
11         positioned.cxx
12         procedure.cxx
13         route.cxx
14         routePath.cxx
15         waypoint.cxx
16     LevelDXML.cxx
17     FlightPlan.cxx
18     NavDataCache.cxx
19     PositionedOctree.cxx
20         )
21
22 set(HEADERS
23     airways.hxx
24         fixlist.hxx
25         markerbeacon.hxx
26         navdb.hxx
27         navlist.hxx
28         navrecord.hxx
29         poidb.hxx
30         positioned.hxx
31         procedure.hxx
32         route.hxx
33         routePath.hxx
34         waypoint.hxx
35     LevelDXML.hxx
36     FlightPlan.hxx
37     NavDataCache.hxx
38     PositionedOctree.hxx
39     )
40
41 if (NOT SYSTEM_SQLITE)
42     list(APPEND SOURCES sqlite3.c)
43     list(APPEND HEADERS sqlite3.h)
44 endif()
45
46 flightgear_component(Navaids "${SOURCES}" "${HEADERS}")