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/kernelcache/api/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view/kernelcache/api/CMakeLists.txt') diff --git a/view/kernelcache/api/CMakeLists.txt b/view/kernelcache/api/CMakeLists.txt index 3097777b..b825b6ff 100644 --- a/view/kernelcache/api/CMakeLists.txt +++ b/view/kernelcache/api/CMakeLists.txt @@ -1,7 +1,7 @@ -cmake_minimum_required(VERSION 3.13 FATAL_ERROR) +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) project(kernelcacheapi) -file(GLOB BN_MACHO_API_SOURCES *.cpp *.h) +file(GLOB BN_MACHO_API_SOURCES CONFIGURE_DEPENDS *.cpp *.h) add_library(kernelcacheapi OBJECT ${BN_MACHO_API_SOURCES}) -- cgit v1.3.1