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. --- plugins/rtti/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/rtti') diff --git a/plugins/rtti/CMakeLists.txt b/plugins/rtti/CMakeLists.txt index 25891070..6db8a973 100644 --- a/plugins/rtti/CMakeLists.txt +++ b/plugins/rtti/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15 FATAL_ERROR) project(rtti) -file(GLOB SOURCES +file(GLOB SOURCES CONFIGURE_DEPENDS *.cpp *.c *.h) -- cgit v1.3.1