]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/CMakeLists.txt
Implement a persistent cache for navigation data.
[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     sqlite3.c
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         positioned.hxx
30         procedure.hxx
31         route.hxx
32         routePath.hxx
33         waypoint.hxx
34     LevelDXML.hxx
35     FlightPlan.hxx
36     NavDataCache.hxx
37     sqlite3.h
38     PositionedOctree.hxx
39     )
40
41 flightgear_component(Navaids "${SOURCES}" "${HEADERS}")