From 71aafc171192e2af987e273395d1d8783a3f7475 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 28 Aug 2024 12:46:25 +1000 Subject: [PATCH] Fix random.cpp not being built --- src/util/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util/CMakeLists.txt b/src/util/CMakeLists.txt index 49554be8..90778c5d 100644 --- a/src/util/CMakeLists.txt +++ b/src/util/CMakeLists.txt @@ -2,4 +2,5 @@ # # SPDX-License-Identifier: GPL-3.0-only -idf_component_register(SRCS INCLUDE_DIRS "include" REQUIRES "memory") +idf_component_register( + SRCS "random.cpp" INCLUDE_DIRS "include" REQUIRES "memory" "komihash")