/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v29.3
cmake/module/AddWindowsResources.cmake
14 строк
428 B
Hennadii Stepanov
cmake: Add `AddWindowsResources` module
16 авг 2024, 23:19
Не верифицирован
16 авг 2024, 23:19
2b43c45
Код
Авторство
О чём код?
# 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()