]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/CMakeLists.txt
Whoops, work-around for #926 correctly.
[flightgear.git] / src / Navaids / CMakeLists.txt
index 8f27472701659101d62304d701990b097022ccbe..5d15dd3d40d3204e473473a764d9f8fb64e10e55 100644 (file)
@@ -2,7 +2,6 @@ include(FlightGearComponent)
 
 set(SOURCES
        airways.cxx
-       awynet.cxx
        fixlist.cxx
        markerbeacon.cxx
        navdb.cxx
@@ -13,7 +12,33 @@ set(SOURCES
        route.cxx
        routePath.cxx
        waypoint.cxx
-       PositionedBinding.cxx
+    LevelDXML.cxx
+    FlightPlan.cxx
+    NavDataCache.cxx
+    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
+    PositionedOctree.hxx
+    )
+
+if (NOT SYSTEM_SQLITE)
+    list(APPEND SOURCES sqlite3.c)
+    list(APPEND HEADERS sqlite3.h)
+endif()
+
+flightgear_component(Navaids "${SOURCES}" "${HEADERS}")
\ No newline at end of file