From 114bdfe1763bb6900ff25be53053a33ae7ddf56c Mon Sep 17 00:00:00 2001 From: Hans-Erik Floryd Date: Mon, 30 Jun 2025 11:35:23 +0200 Subject: [PATCH] Rename SOEM_BUILD_UTILS to SOEM_BUILD_SAMPLES Rename option to correspond with folder containing sources. Change-Id: I7c722d5fff8da28d39cde718962a626123ed0cd7 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cf7e3d8..494da40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,7 +49,7 @@ set(EC_SECONDARY_MAC "04:04:04:04:04:04" CACHE STRING "Secondary MAC address") if(PROJECT_IS_TOP_LEVEL) # Make option visible in ccmake, cmake-gui option(BUILD_SHARED_LIBS "Build shared library" OFF) - option(SOEM_BUILD_UTILS "Build utitilities" ON) + option(SOEM_BUILD_SAMPLES "Build samples" ON) # Default to release build with debug info if(NOT CMAKE_BUILD_TYPE) @@ -157,7 +157,7 @@ install(FILES DESTINATION cmake ) -if(SOEM_BUILD_UTILS) +if(SOEM_BUILD_SAMPLES) add_subdirectory(samples/coetest) add_subdirectory(samples/eepromtool) add_subdirectory(samples/firm_update)