File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 7777 echo "CXX=clang++" >> $GITHUB_ENV
7878 fi
7979
80+ brew --prefix sqlite
81+
8082 - name : Create Build Environment
8183 run : cmake -E make_directory ${{runner.workspace}}/build
8284
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ set(SQLITE3_LIB_SEARCH_PATHS
4646if (APPLE )
4747 # on macOS, we try hard to prefer aftermarket sqlite3 installations, as the system sqlite3
4848 # disables extension loading, which breaks use of spatialite later on
49- list (INSERT SQLITE3_INCLUDE_SEARCH_PATHS 0 /usr/local/opt/sqlite3/include /usr/local/include /opt/homebrew/opt/sqlite/include )
49+ list (INSERT SQLITE3_INCLUDE_SEARCH_PATHS 0 /usr/local/opt/sqlite/ include /usr/local/opt/ sqlite3/include /usr/local/include /opt/homebrew/opt/sqlite/include )
5050 find_path (SQLITE3_INCLUDE_DIR
5151 NAMES sqlite3.h
5252 PATHS ${SQLITE3_INCLUDE_SEARCH_PATHS}
@@ -66,7 +66,7 @@ set(SQLITE3_NAMES sqlite3_i sqlite3)
6666if (APPLE )
6767 # on macOS, we try hard to prefer aftermarket sqlite3 installations, as the system sqlite3
6868 # disables extension loading, which breaks use of spatialite later on
69- list (INSERT SQLITE3_LIB_SEARCH_PATHS 0 /usr/local/opt/sqlite3/lib /usr/local/lib /opt/homebrew/opt/sqlite/lib)
69+ list (INSERT SQLITE3_LIB_SEARCH_PATHS 0 /usr/local/opt/sqlite/lib /usr/local/opt/ sqlite3/lib /usr/local/lib /opt/homebrew/opt/sqlite/lib)
7070 find_library (SQLITE3_LIBRARY
7171 NAMES ${SQLITE3_NAMES}
7272 PATHS ${SQLITE3_LIB_SEARCH_PATHS}
You can’t perform that action at this time.
0 commit comments