You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MESSAGE(WARNING "Found sqlite, but the sqlite3_enable_load_extension is disabled. On macOS, you should `brew install sqlite3` as the system sqlite3 library disables extension loading by default for security reasons.")
100
-
else()
101
-
MESSAGE(WARNING "Found sqlite, but the sqlite3_enable_load_extension is disabled")
102
-
endif()
103
-
ENDIF (NOT SQLITE3_LOAD_EXTENSION)
91
+
if(NOT SQLITE3_LOAD_EXTENSION)
92
+
if(APPLE)
93
+
message(WARNING "Found sqlite, but the sqlite3_enable_load_extension is disabled. On macOS, you should `brew install sqlite3` as the system sqlite3 library disables extension loading by default for security reasons.")
94
+
else()
95
+
message(WARNING "Found sqlite, but the sqlite3_enable_load_extension is disabled")
0 commit comments