From 2137467f0b20cca0a8a6938e8039bbf8837cdc1c Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Mon, 12 Feb 2024 22:27:55 +0100 Subject: [PATCH] Trigger rebuild if builtin source changes --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6220fb4f2..341f50bf1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -96,7 +96,7 @@ add_definitions(-D_REENTRANT) # cargo needs to be rerun when the sources change. # This is imperfect, but the ninja generator really wants to # not run cargo, so we need to tell it *something* -FILE(GLOB sources src/*) +FILE(GLOB sources src/* src/*/* src/*/*/*) # Define a function to link dependencies. function(FISH_LINK_DEPS_AND_SIGN target)