From 5e95aa09e8c5a6fef031d0b9d7f4d8e56f5e1370 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Fri, 31 May 2024 13:27:57 -0500 Subject: [PATCH] CMake: Fix CIRCT_ENABLE_FRONTENDS to be string not bool. (#7110) --- frontends/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontends/CMakeLists.txt b/frontends/CMakeLists.txt index 1e6c1c57d8..3e298d486c 100644 --- a/frontends/CMakeLists.txt +++ b/frontends/CMakeLists.txt @@ -8,7 +8,7 @@ set (CIRCT_KNOWN_FRONTENDS PyCDE) -option(CIRCT_ENABLE_FRONTENDS "") +set(CIRCT_ENABLE_FRONTENDS "" CACHE STRING "List of frontends to enable") foreach(proj ${CIRCT_KNOWN_FRONTENDS}) string(TOUPPER "${proj}" upper_proj) string(REGEX REPLACE "-" "_" upper_proj ${upper_proj})