mirror of https://github.com/bitcoin/bitcoin.git
26 lines
585 B
CMake
26 lines
585 B
CMake
# Copyright (c) 2023-present The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or https://opensource.org/license/mit/.
|
|
|
|
add_library(test_fuzz STATIC EXCLUDE_FROM_ALL
|
|
check_globals.cpp
|
|
descriptor.cpp
|
|
mempool.cpp
|
|
net.cpp
|
|
threadinterrupt.cpp
|
|
../fuzz.cpp
|
|
../util.cpp
|
|
)
|
|
|
|
target_link_libraries(test_fuzz
|
|
PRIVATE
|
|
core_interface
|
|
test_util
|
|
bitcoin_node
|
|
Boost::headers
|
|
)
|
|
|
|
if(NOT FUZZ_BINARY_LINKS_WITHOUT_MAIN_FUNCTION)
|
|
target_compile_definitions(test_fuzz PRIVATE PROVIDE_FUZZ_MAIN_FUNCTION)
|
|
endif()
|