mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 11:57:28 -03:00
14 lines
428 B
CMake
14 lines
428 B
CMake
# Copyright (c) 2024-present The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or https://opensource.org/license/mit/.
|
|
|
|
include_guard(GLOBAL)
|
|
|
|
macro(add_windows_resources target rc_file)
|
|
if(WIN32)
|
|
target_sources(${target} PRIVATE ${rc_file})
|
|
set_property(SOURCE ${rc_file}
|
|
APPEND PROPERTY COMPILE_DEFINITIONS WINDRES_PREPROC
|
|
)
|
|
endif()
|
|
endmacro()
|