From d53d0334da5afa5898a031b015cc8b58c9b5112c Mon Sep 17 00:00:00 2001 From: Siddharth Chandrasekaran Date: Tue, 19 Mar 2024 23:35:01 +0100 Subject: [PATCH] cmake: Fix broken CI build due utils build Signed-off-by: Siddharth Chandrasekaran --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 29ad8b6..bc76197 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,6 +40,7 @@ option(CONFIG_OSDP_LIB_ONLY "Only build the library" OFF) include(GitSubmodules) add_subdirectory(src) if (NOT CONFIG_OSDP_STATIC_PD AND NOT CONFIG_OSDP_LIB_ONLY) + add_subdirectory(utils) add_subdirectory(tests/unit-tests) add_subdirectory(examples/c) add_subdirectory(examples/cpp)