aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0c890870..c5d30874 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,6 @@ set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(NRF_TARGET "nrf52")
-cmake_policy(SET CMP0140 NEW)
if (NOT ARM_NONE_EABI_TOOLCHAIN_PATH)
message(FATAL_ERROR "The path to the toolchain (arm-none-eabi) must be specified on the command line (add -DARM_NONE_EABI_TOOLCHAIN_PATH=<path>")
@@ -87,7 +86,8 @@ function(AddToListIfEnabled list enabled type)
if(${enabled})
list(APPEND ${list} ${type})
endif ()
- return(PROPAGATE ${list})
+ #return(PROPAGATE ${list})
+ set(${list} "${${list}}" PARENT_SCOPE)
endfunction()
# Generate the list of user apps to be compiled into the firmware