mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
- Go through CAPI for python bindings - Consuming LLVM errors in CAPI: fixes previous issue which made this impossible in the python bindings
11 lines
247 B
CMake
11 lines
247 B
CMake
add_subdirectory(Dialect)
|
|
add_subdirectory(Conversion)
|
|
add_subdirectory(Support)
|
|
add_subdirectory(Runtime)
|
|
add_subdirectory(Bindings)
|
|
|
|
# CAPI needed only for python bindings
|
|
if (ZAMALANG_BINDINGS_PYTHON_ENABLED)
|
|
add_subdirectory(CAPI)
|
|
endif()
|