mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-09 11:27:28 -03:00
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.
This commit is contained in:
parent
0e5cd608da
commit
1f054eca4e
7 changed files with 11 additions and 11 deletions
|
@ -458,10 +458,10 @@ else()
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
configure_file(cmake/script/Coverage.cmake Coverage.cmake COPYONLY)
|
configure_file(cmake/script/Coverage.cmake Coverage.cmake USE_SOURCE_PERMISSIONS COPYONLY)
|
||||||
configure_file(cmake/script/CoverageFuzz.cmake CoverageFuzz.cmake COPYONLY)
|
configure_file(cmake/script/CoverageFuzz.cmake CoverageFuzz.cmake USE_SOURCE_PERMISSIONS COPYONLY)
|
||||||
configure_file(cmake/script/CoverageInclude.cmake.in CoverageInclude.cmake @ONLY)
|
configure_file(cmake/script/CoverageInclude.cmake.in CoverageInclude.cmake USE_SOURCE_PERMISSIONS @ONLY)
|
||||||
configure_file(contrib/filter-lcov.py filter-lcov.py COPYONLY)
|
configure_file(contrib/filter-lcov.py filter-lcov.py USE_SOURCE_PERMISSIONS COPYONLY)
|
||||||
|
|
||||||
# Don't allow extended (non-ASCII) symbols in identifiers. This is easier for code review.
|
# Don't allow extended (non-ASCII) symbols in identifiers. This is easier for code review.
|
||||||
try_append_cxx_flags("-fno-extended-identifiers" TARGET core_interface SKIP_LINK)
|
try_append_cxx_flags("-fno-extended-identifiers" TARGET core_interface SKIP_LINK)
|
||||||
|
|
|
@ -14,5 +14,5 @@ function(generate_setup_nsi)
|
||||||
set(BITCOIN_WALLET_TOOL_NAME "bitcoin-wallet")
|
set(BITCOIN_WALLET_TOOL_NAME "bitcoin-wallet")
|
||||||
set(BITCOIN_TEST_NAME "test_bitcoin")
|
set(BITCOIN_TEST_NAME "test_bitcoin")
|
||||||
set(EXEEXT ${CMAKE_EXECUTABLE_SUFFIX})
|
set(EXEEXT ${CMAKE_EXECUTABLE_SUFFIX})
|
||||||
configure_file(${PROJECT_SOURCE_DIR}/share/setup.nsi.in ${PROJECT_BINARY_DIR}/bitcoin-win64-setup.nsi @ONLY)
|
configure_file(${PROJECT_SOURCE_DIR}/share/setup.nsi.in ${PROJECT_BINARY_DIR}/bitcoin-win64-setup.nsi USE_SOURCE_PERMISSIONS @ONLY)
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
|
@ -92,11 +92,11 @@ function(add_macos_deploy_target)
|
||||||
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND TARGET bitcoin-qt)
|
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND TARGET bitcoin-qt)
|
||||||
set(macos_app "Bitcoin-Qt.app")
|
set(macos_app "Bitcoin-Qt.app")
|
||||||
# Populate Contents subdirectory.
|
# Populate Contents subdirectory.
|
||||||
configure_file(${PROJECT_SOURCE_DIR}/share/qt/Info.plist.in ${macos_app}/Contents/Info.plist)
|
configure_file(${PROJECT_SOURCE_DIR}/share/qt/Info.plist.in ${macos_app}/Contents/Info.plist USE_SOURCE_PERMISSIONS)
|
||||||
file(CONFIGURE OUTPUT ${macos_app}/Contents/PkgInfo CONTENT "APPL????")
|
file(CONFIGURE OUTPUT ${macos_app}/Contents/PkgInfo CONTENT "APPL????")
|
||||||
# Populate Contents/Resources subdirectory.
|
# Populate Contents/Resources subdirectory.
|
||||||
file(CONFIGURE OUTPUT ${macos_app}/Contents/Resources/empty.lproj CONTENT "")
|
file(CONFIGURE OUTPUT ${macos_app}/Contents/Resources/empty.lproj CONTENT "")
|
||||||
configure_file(${PROJECT_SOURCE_DIR}/src/qt/res/icons/bitcoin.icns ${macos_app}/Contents/Resources/bitcoin.icns COPYONLY)
|
configure_file(${PROJECT_SOURCE_DIR}/src/qt/res/icons/bitcoin.icns ${macos_app}/Contents/Resources/bitcoin.icns USE_SOURCE_PERMISSIONS COPYONLY)
|
||||||
file(CONFIGURE OUTPUT ${macos_app}/Contents/Resources/Base.lproj/InfoPlist.strings
|
file(CONFIGURE OUTPUT ${macos_app}/Contents/Resources/Base.lproj/InfoPlist.strings
|
||||||
CONTENT "{ CFBundleDisplayName = \"@PACKAGE_NAME@\"; CFBundleName = \"@PACKAGE_NAME@\"; }"
|
CONTENT "{ CFBundleDisplayName = \"@PACKAGE_NAME@\"; CFBundleName = \"@PACKAGE_NAME@\"; }"
|
||||||
)
|
)
|
||||||
|
|
|
@ -6,7 +6,7 @@ find_package(Doxygen COMPONENTS dot)
|
||||||
|
|
||||||
if(DOXYGEN_FOUND)
|
if(DOXYGEN_FOUND)
|
||||||
set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
|
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()
|
# In CMake 3.27, The FindDoxygen module's doxygen_add_docs()
|
||||||
# command gained a CONFIG_FILE option to specify a custom doxygen
|
# command gained a CONFIG_FILE option to specify a custom doxygen
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
include(GNUInstallDirs)
|
include(GNUInstallDirs)
|
||||||
include(AddWindowsResources)
|
include(AddWindowsResources)
|
||||||
|
|
||||||
configure_file(${PROJECT_SOURCE_DIR}/cmake/bitcoin-config.h.in config/bitcoin-config.h @ONLY)
|
configure_file(${PROJECT_SOURCE_DIR}/cmake/bitcoin-config.h.in config/bitcoin-config.h USE_SOURCE_PERMISSIONS @ONLY)
|
||||||
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
|
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
|
|
||||||
# TODO: After the transition from Autotools to CMake, the obj/ subdirectory
|
# TODO: After the transition from Autotools to CMake, the obj/ subdirectory
|
||||||
|
|
|
@ -46,7 +46,7 @@ file(GLOB ts_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} locale/*.ts)
|
||||||
set_source_files_properties(${ts_files} PROPERTIES OUTPUT_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/locale)
|
set_source_files_properties(${ts_files} PROPERTIES OUTPUT_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/locale)
|
||||||
qt5_add_translation(qm_files ${ts_files})
|
qt5_add_translation(qm_files ${ts_files})
|
||||||
|
|
||||||
configure_file(bitcoin_locale.qrc bitcoin_locale.qrc COPYONLY)
|
configure_file(bitcoin_locale.qrc bitcoin_locale.qrc USE_SOURCE_PERMISSIONS COPYONLY)
|
||||||
|
|
||||||
# The bitcoinqt sources have to include headers in
|
# The bitcoinqt sources have to include headers in
|
||||||
# order to parse them to collect translatable strings.
|
# order to parse them to collect translatable strings.
|
||||||
|
|
|
@ -27,7 +27,7 @@ function(create_test_config)
|
||||||
set_configure_variable(ENABLE_EXTERNAL_SIGNER ENABLE_EXTERNAL_SIGNER)
|
set_configure_variable(ENABLE_EXTERNAL_SIGNER ENABLE_EXTERNAL_SIGNER)
|
||||||
set_configure_variable(WITH_USDT ENABLE_USDT_TRACEPOINTS)
|
set_configure_variable(WITH_USDT ENABLE_USDT_TRACEPOINTS)
|
||||||
|
|
||||||
configure_file(config.ini.in config.ini @ONLY)
|
configure_file(config.ini.in config.ini USE_SOURCE_PERMISSIONS @ONLY)
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
create_test_config()
|
create_test_config()
|
||||||
|
|
Loading…
Reference in a new issue