mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
14 lines
322 B
Makefile
14 lines
322 B
Makefile
build:
|
|
cmake -B build . \
|
|
-DLLVM_DIR=${LLVM_PROJECT}/build/lib/cmake/llvm \
|
|
-DMLIR_DIR=${LLVM_PROJECT}/build/lib/cmake/mlir \
|
|
-DCONCRETE_FFI_RELEASE=${CONCRETE_PROJECT}/target/release
|
|
|
|
zamacompiler:
|
|
make -C build/ zamacompiler
|
|
|
|
test:
|
|
${LLVM_PROJECT}/build/bin/llvm-lit -v tests/
|
|
|
|
test_python:
|
|
pytest -v tests/python
|