From 3ff320756ac801f1474b1ad5e3defacfcad63cba Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Fri, 10 May 2024 11:49:32 +0200 Subject: [PATCH] benchmarks/cachespeed/CMakeLists.txt: fix the names of the config entry CONFIG_TESTING_ -> CONFIG_BENCHMARK_ fix Relative file path does not match actual file. --- benchmarks/cachespeed/CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/benchmarks/cachespeed/CMakeLists.txt b/benchmarks/cachespeed/CMakeLists.txt index 4b829876a..f41b75a2f 100644 --- a/benchmarks/cachespeed/CMakeLists.txt +++ b/benchmarks/cachespeed/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/testing/cachespeed/CMakeLists.txt +# apps/benchmarks/cachespeed/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,14 +18,14 @@ # # ############################################################################## -if(CONFIG_TESTING_CACHESPEED) +if(CONFIG_BENCHMARK_CACHESPEED) nuttx_add_application( NAME - ${CONFIG_TESTING_CACHESPEED_PROGNAME} + ${CONFIG_BENCHMARK_CACHESPEED_PROGNAME} SRCS cachespeed_main.c STACKSIZE - ${CONFIG_TESTING_CACHESPEED_STACKSIZE} + ${CONFIG_BENCHMARK_CACHESPEED_STACKSIZE} PRIORITY - ${CONFIG_TESTING_CACHESPEED_PRIORITY}) + ${CONFIG_BENCHMARK_CACHESPEED_PRIORITY}) endif()