Add SQL to Makefile

This commit is contained in:
Chaoscaot
2023-04-04 16:31:48 +02:00
parent 1df33249c4
commit 5c9bcfc2ec

View File

@ -2,6 +2,10 @@ default:
@echo "Building (Release)...";
cargo rustc --release --color=always -p schemsearch-cli -- -C target-feature=+avx2
sql:
@echo "Building (Release)...";
cargo rustc --release --color=always -p schemsearch-cli --features sql -- -C target-feature=+avx2
debug:
@echo "Building (Debug)...";
cargo build -p schemsearch-cli