Skip to content

Commit ef78f63

Browse files
committed
trying something with sqlite
1 parent 62f6a60 commit ef78f63

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ install(DIRECTORY ${CESIUM_NATIVE_SPDLOG_INCLUDE_DIR}/spdlog DESTINATION "${CMAK
175175

176176
install(TARGETS ${CESIUM_NATIVE_DRACO_LIBRARY})
177177

178-
install(TARGETS sqlite3)
178+
install(TARGETS ${CESIUM_NATIVE_SQLITE_LIBRARY})
179179

180180
install(TARGETS modp_b64)
181181

CesiumAsync/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ target_link_libraries(CesiumAsync
4343
GSL
4444
Async++
4545
PRIVATE
46-
sqlite3
46+
${CESIUM_NATIVE_SQLITE_LIBRARY}
4747
)
4848

4949
# These libraries erroneously do NOT list their headers as `SYSTEM` headers

extern/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ add_subdirectory(spdlog)
3535

3636
if (NOT TARGET sqlite3)
3737
add_subdirectory(sqlite3)
38+
set(CESIUM_NATIVE_SQLITE_LIBRARY sqlite3)
3839
endif()
3940

4041
add_subdirectory(modp_b64)

0 commit comments

Comments
 (0)