From 7038c0909d18253e9e7b2d2ccb20c67f3bf398c8 Mon Sep 17 00:00:00 2001 From: Torsten Rasmussen Date: Thu, 2 Sep 2021 22:39:45 +0200 Subject: [PATCH] cmake: remove deprecated `set_conf_file()` support The `set_conf_file()` was deprecated in 6d4ba3490fee518da9136ce54d45d82200e800c6 which is before Zephyr v1.14 LTS. Let's remove the support now, before releasing a new LTS. Signed-off-by: Torsten Rasmussen --- cmake/app/boilerplate.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmake/app/boilerplate.cmake b/cmake/app/boilerplate.cmake index 67ac778010..4f35b9bb26 100644 --- a/cmake/app/boilerplate.cmake +++ b/cmake/app/boilerplate.cmake @@ -464,10 +464,6 @@ elseif(CACHED_CONF_FILE) elseif(DEFINED ENV{CONF_FILE}) set(CONF_FILE $ENV{CONF_FILE}) -elseif(COMMAND set_conf_file) - message(WARNING "'set_conf_file' is deprecated, it will be removed in a future release.") - set_conf_file() - elseif(EXISTS ${APPLICATION_SOURCE_DIR}/prj_${BOARD}.conf) set(CONF_FILE ${APPLICATION_SOURCE_DIR}/prj_${BOARD}.conf)