]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/CMakeLists.txt
Whoops, work-around for #926 correctly.
[flightgear.git] / src / Navaids / CMakeLists.txt
index bd5cce9b78934d07e1a4cd7cc8733451df4b0df3..5d15dd3d40d3204e473473a764d9f8fb64e10e55 100644 (file)
@@ -12,7 +12,11 @@ set(SOURCES
        route.cxx
        routePath.cxx
        waypoint.cxx
-)
+    LevelDXML.cxx
+    FlightPlan.cxx
+    NavDataCache.cxx
+    PositionedOctree.cxx
+       )
 
 set(HEADERS
     airways.hxx
@@ -26,6 +30,15 @@ set(HEADERS
        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