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 <anchao@lixiang.com>
This commit is contained in:
chao an
2024-11-29 14:47:24 +08:00
committed by archer
parent 5cb1cc7ac7
commit 3fd04e86e8

View File

@@ -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()