From ee31a857228c9e2c8662fb1b960bc7779aee97bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Sun, 6 Apr 2025 12:53:53 +0200 Subject: [PATCH] Revert "Add CONFIGURE_DEPENDS to the cmake (#5739)" This reverts commit 57b9f0e54c79b0d3dfe19fdea96fae8942d4e821. --- cockatrice/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/CMakeLists.txt b/cockatrice/CMakeLists.txt index 9b50c9469..a5ffed4be 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 CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/cockatrice/src/*.cpp) +file(GLOB_RECURSE cockatrice_CPP_FILES ${CMAKE_SOURCE_DIR}/cockatrice/src/*.cpp) set(cockatrice_SOURCES ${cockatrice_CPP_FILES} ${VERSION_STRING_CPP})