From 8d063d299ca86c6b7bf3110996d076100859732d Mon Sep 17 00:00:00 2001 From: youben11 Date: Tue, 6 Dec 2022 13:57:23 +0100 Subject: [PATCH] chore: fix CAPI dependency it is no longer needed by python only, so we want it to be built even when python bindings are disabled --- compiler/lib/CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/compiler/lib/CMakeLists.txt b/compiler/lib/CMakeLists.txt index 0675b2356..21644c29a 100644 --- a/compiler/lib/CMakeLists.txt +++ b/compiler/lib/CMakeLists.txt @@ -7,8 +7,4 @@ add_subdirectory(ClientLib) add_subdirectory(Bindings) add_subdirectory(ServerLib) add_subdirectory(Interfaces) - -# CAPI needed only for python bindings -if(CONCRETELANG_BINDINGS_PYTHON_ENABLED) - add_subdirectory(CAPI) -endif() +add_subdirectory(CAPI)