From 1e53ce5a49eac11a8af4faa40a6af977e4f54a94 Mon Sep 17 00:00:00 2001 From: RickyRister Date: Sun, 16 Mar 2025 17:38:52 -0700 Subject: [PATCH] Add CONFIGURE_DEPENDS to the cmake --- cockatrice/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/CMakeLists.txt b/cockatrice/CMakeLists.txt index a5ffed4be..9b50c9469 100644 --- a/cockatrice/CMakeLists.txt +++ b/cockatrice/CMakeLists.txt @@ -4,7 +4,7 @@ project(Cockatrice VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") -file(GLOB_RECURSE cockatrice_CPP_FILES ${CMAKE_SOURCE_DIR}/cockatrice/src/*.cpp) +file(GLOB_RECURSE cockatrice_CPP_FILES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/cockatrice/src/*.cpp) set(cockatrice_SOURCES ${cockatrice_CPP_FILES} ${VERSION_STRING_CPP})