mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 08:46:49 +02:00
option to use brew sqlite in include and lib flag (#24)
This commit is contained in:
parent
df48ac2416
commit
2c382a4cb4
1 changed files with 6 additions and 0 deletions
6
Makefile
6
Makefile
|
|
@ -46,6 +46,12 @@ ifndef OMIT_SIMD
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifdef USE_BREW_SQLITE
|
||||||
|
SQLITE_INCLUDE_PATH=-I/opt/homebrew/opt/sqlite/include
|
||||||
|
SQLITE_LIB_PATH=-L/opt/homebrew/opt/sqlite/lib
|
||||||
|
CFLAGS += $(SQLITE_INCLUDE_PATH) $(SQLITE_LIB_PATH)
|
||||||
|
endif
|
||||||
|
|
||||||
ifdef IS_MACOS_ARM
|
ifdef IS_MACOS_ARM
|
||||||
RENAME_WHEELS_ARGS=--is-macos-arm
|
RENAME_WHEELS_ARGS=--is-macos-arm
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue