From 94ccbf0577dee8f7d010b2a9a8ab42ad04594d34 Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Fri, 10 May 2024 13:05:05 +0200 Subject: [PATCH] testing/ramtest/CMakeLists.txt: fix the names of the config entry CONFIG_SYSTEM_ -> CONFIG_TESTING_ fix Relative file path does not match actual file. --- testing/ramtest/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/ramtest/CMakeLists.txt b/testing/ramtest/CMakeLists.txt index 28e58148b..73c09ba38 100644 --- a/testing/ramtest/CMakeLists.txt +++ b/testing/ramtest/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/system/ramtest/CMakeLists.txt +# apps/testing/ramtest/CMakeLists.txt # # Licensed to the Apache Software Foundation (ASF) under one or more contributor # license agreements. See the NOTICE file distributed with this work for @@ -18,6 +18,6 @@ # # ############################################################################## -if(CONFIG_SYSTEM_RAMTEST) +if(CONFIG_TESTING_RAMTEST) nuttx_add_application(NAME ramtest) endif()