]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/CMakeLists.txt
Implement a persistent cache for navigation data.
[flightgear.git] / src / Navaids / CMakeLists.txt
index 8f27472701659101d62304d701990b097022ccbe..0dbc542c6527698c56d56f445648ef8b17cfa42e 100644 (file)
@@ -2,7 +2,6 @@ include(FlightGearComponent)
 
 set(SOURCES
        airways.cxx
-       awynet.cxx
        fixlist.cxx
        markerbeacon.cxx
        navdb.cxx
@@ -13,7 +12,30 @@ set(SOURCES
        route.cxx
        routePath.cxx
        waypoint.cxx
-       PositionedBinding.cxx
+    LevelDXML.cxx
+    FlightPlan.cxx
+    NavDataCache.cxx
+    sqlite3.c
+    PositionedOctree.cxx
        )
 
-flightgear_component(Navaids "${SOURCES}")
\ No newline at end of file
+set(HEADERS
+    airways.hxx
+       fixlist.hxx
+       markerbeacon.hxx
+       navdb.hxx
+       navlist.hxx
+       navrecord.hxx
+       positioned.hxx
+       procedure.hxx
+       route.hxx
+       routePath.hxx
+       waypoint.hxx
+    LevelDXML.hxx
+    FlightPlan.hxx
+    NavDataCache.hxx
+    sqlite3.h
+    PositionedOctree.hxx
+    )
+
+flightgear_component(Navaids "${SOURCES}" "${HEADERS}")
\ No newline at end of file