]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/CMakeLists.txt
Whoops, work-around for #926 correctly.
[flightgear.git] / src / Navaids / CMakeLists.txt
index 1d2919902d3881d86fdec739e0c07e858c5caa8a..5d15dd3d40d3204e473473a764d9f8fb64e10e55 100644 (file)
@@ -14,6 +14,8 @@ set(SOURCES
        waypoint.cxx
     LevelDXML.cxx
     FlightPlan.cxx
+    NavDataCache.cxx
+    PositionedOctree.cxx
        )
 
 set(HEADERS
@@ -30,6 +32,13 @@ set(HEADERS
        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