From 42878c46ace7ee6d267d26ee87b4d4015b4e4b2b Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Mon, 28 Jul 2025 19:45:56 -0700 Subject: [CMake] Specify CONFIGURE_DEPENDS for all file(GLOB ..) This ensures that CMake detects when files that match the glob are added or removed. --- view/elf/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/elf') diff --git a/view/elf/CMakeLists.txt b/view/elf/CMakeLists.txt index 97a7ddeb..c50eaaea 100644 --- a/view/elf/CMakeLists.txt +++ b/view/elf/CMakeLists.txt @@ -6,7 +6,7 @@ if(NOT BN_INTERNAL_BUILD) add_subdirectory(${PROJECT_SOURCE_DIR}/../.. ${PROJECT_BINARY_DIR}/api) endif() -file(GLOB SOURCES +file(GLOB SOURCES CONFIGURE_DEPENDS *.cpp *.h) -- cgit v1.3.1