From 3fd04e86e8d61dc3e12cafb18a5523ece92f4703 Mon Sep 17 00:00:00 2001 From: chao an Date: Fri, 29 Nov 2024 14:47:24 +0800 Subject: [PATCH] math/ruy: remove ruy library from cmake list ruy is not really used, tflite just uses the header file Error log from CMake: ================================================================ -- Configuring done (2.1s) CMake Error at cmake/nuttx_add_library.cmake:183 (add_library): No SOURCES given to target: ruy Call Stack (most recent call first): apps/math/ruy/CMakeLists.txt:57 (nuttx_add_library) Signed-off-by: chao an --- math/ruy/CMakeLists.txt | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/math/ruy/CMakeLists.txt b/math/ruy/CMakeLists.txt index 94dbcf730..b31f497f2 100644 --- a/math/ruy/CMakeLists.txt +++ b/math/ruy/CMakeLists.txt @@ -44,17 +44,4 @@ if(CONFIG_MATH_RUY) endif() endif() - # ############################################################################ - # Include Directory - # ############################################################################ - - set(INCDIR ${CMAKE_CURRENT_LIST_DIR}/ruy) - - # ############################################################################ - # Library Configuration - # ############################################################################ - - nuttx_add_library(ruy STATIC) - target_include_directories(ruy PUBLIC ${INCDIR}) - endif()