diff options
| author | Mark Rowe <mark@vector35.com> | 2025-07-28 19:45:56 -0700 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2025-07-30 16:48:38 -0700 |
| commit | 42878c46ace7ee6d267d26ee87b4d4015b4e4b2b (patch) | |
| tree | 398ff19da9c4bae81f5c8c87ad15592269a1cc06 /view/macho | |
| parent | 3e9f6433c838cad88f0d97b3ac9f2aa402b83720 (diff) | |
[CMake] Specify CONFIGURE_DEPENDS for all file(GLOB ..)
This ensures that CMake detects when files that match the glob are added
or removed.
Diffstat (limited to 'view/macho')
| -rw-r--r-- | view/macho/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/macho/CMakeLists.txt b/view/macho/CMakeLists.txt index dcc5c422..99b395ad 100644 --- a/view/macho/CMakeLists.txt +++ b/view/macho/CMakeLists.txt @@ -6,7 +6,7 @@ if(NOT BN_INTERNAL_BUILD) add_subdirectory(${PROJECT_SOURCE_DIR}/../.. ${PROJECT_BINARY_DIR}/api) endif() -file(GLOB SOURCES *.cpp *.h ../../objectivec/*) +file(GLOB SOURCES CONFIGURE_DEPENDS *.cpp *.h ../../objectivec/*) if(DEMO) add_library(view_macho STATIC ${SOURCES}) |
