diff options
author | fanquake <fanquake@gmail.com> | 2024-09-05 15:47:13 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2024-09-06 10:52:19 +0100 |
commit | 1f054eca4e779cfa5f9f6e9278071adf65e5eafe (patch) | |
tree | f22d410a514e77c4186d32c729a3562a54bd3738 /doc | |
parent | 0e5cd608da5d8c3d9c758dbfa3fc36df4af4a100 (diff) |
cmake: add USE_SOURCE_PERMISSIONS to all configure_file usage
`USE_SOURCE_PERMISSIONS` is the default, so this should not change
behaviour. However, being explicit makes it clear what we are doing.
Related to #30815.
See
https://cmake.org/cmake/help/latest/command/configure_file.html#options.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 61a7653e4a..310a90612b 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -6,7 +6,7 @@ find_package(Doxygen COMPONENTS dot) if(DOXYGEN_FOUND) set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) - configure_file(Doxyfile.in ${doxyfile}) + configure_file(Doxyfile.in ${doxyfile} USE_SOURCE_PERMISSIONS) # In CMake 3.27, The FindDoxygen module's doxygen_add_docs() # command gained a CONFIG_FILE option to specify a custom doxygen |