From b05c8a7086be7fa7241970052d0891925e183a10 Mon Sep 17 00:00:00 2001 From: Yongjoo Ahn Date: Fri, 17 Jan 2025 15:59:12 +0900 Subject: [PATCH] [build] Fix cmake build script to install dummy - Install dummy things to fix gbs build error when there are no backends Signed-off-by: Yongjoo Ahn --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c992964..b30d74d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,3 +63,6 @@ ADD_LIBRARY(${SNPE_LIBRARY_NAME} SHARED ${SNPE_SRCS} ${UTIL_SRCS}) TARGET_LINK_LIBRARIES(${SNPE_LIBRARY_NAME} ${snpe_build_dep_pkgs_LDFLAGS}) INSTALL(TARGETS ${SNPE_LIBRARY_NAME} DESTINATION ${HAL_LIBDIR} COMPONENT RuntimeLibraries) ENDIF() + +# Dummy install command when there are no backends deps. +INSTALL(CODE "message(STATUS \"Performing dummy install actions\")") -- 2.34.1