mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
172096e9dd
Goal along with namespacing PR #23497 is to have src/node/ code in node:: namespace in libbitcoin_node.a library -BEGIN VERIFY SCRIPT- bash -c ' # Bash shell needed for brace expansion {a,b} git mv build_msvc/libbitcoin_{server,node} git mv build_msvc/libbitcoin_node/libbitcoin_{server,node}.vcxproj.in ren() { git grep -l "$1" src build_msvc | xargs sed -i "s/$1/$2/g"; } ren LIBBITCOIN_{SERVER,NODE} ren libbitcoin_{server,node} ' -END VERIFY SCRIPT-
25 lines
798 B
Text
25 lines
798 B
Text
# Copyright (c) 2013-2020 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
LIBTEST_FUZZ=libtest_fuzz.a
|
|
|
|
EXTRA_LIBRARIES += \
|
|
$(LIBTEST_FUZZ)
|
|
|
|
TEST_FUZZ_H = \
|
|
test/fuzz/fuzz.h \
|
|
test/fuzz/FuzzedDataProvider.h \
|
|
test/fuzz/util.h
|
|
|
|
libtest_fuzz_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(MINIUPNPC_CPPFLAGS) $(NATPMP_CPPFLAGS) $(EVENT_CFLAGS) $(EVENT_PTHREADS_CFLAGS)
|
|
libtest_fuzz_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
libtest_fuzz_a_SOURCES = \
|
|
test/fuzz/fuzz.cpp \
|
|
test/fuzz/util.cpp \
|
|
$(TEST_FUZZ_H)
|
|
|
|
LIBTEST_FUZZ += $(LIBBITCOIN_NODE)
|
|
LIBTEST_FUZZ += $(LIBBITCOIN_COMMON)
|
|
LIBTEST_FUZZ += $(LIBBITCOIN_UTIL)
|
|
LIBTEST_FUZZ += $(LIBBITCOIN_CRYPTO_BASE)
|