From 535dfee76ea5a3d7374672d91518317c27d81d42 Mon Sep 17 00:00:00 2001 From: jake-g00dwin Date: Mon, 20 Jul 2026 19:35:53 -0700 Subject: [PATCH] Commented out embedded sepcific module. --- .template_files/modules/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.template_files/modules/CMakeLists.txt b/.template_files/modules/CMakeLists.txt index b7f1928..fdbb630 100644 --- a/.template_files/modules/CMakeLists.txt +++ b/.template_files/modules/CMakeLists.txt @@ -12,7 +12,7 @@ if(NOT UNIT_TESTING) ${CMAKE_SOURCE_DIR}/inc/ ) target_link_libraries(module_name - RegEdit + # RegEdit ) #These get defined in the toolchain files. @@ -37,6 +37,6 @@ else() ) #Place Mocked/Regular dependencies here for unit testing. target_link_libraries(module_name - MockRegEdit + # MockRegEdit ) endif()