Hennadii Stepanov
|
30aee016f1
|
scripted-diff: Rename `libbitcoinconsensus` to `libbitcoin_consensus`
This build artifact is not a user-exposed shared library (DLL) but a
convenience static library.
See: https://github.com/bitcoin/bitcoin/blob/master/doc/design/libraries.md
-BEGIN VERIFY SCRIPT-
sed -i 's/libbitcoinconsensus/libbitcoin_consensus/g' $(git grep -l "libbitcoinconsensus" -- build_msvc)
git mv build_msvc/libbitcoinconsensus build_msvc/libbitcoin_consensus
git mv build_msvc/libbitcoin_consensus/libbitcoinconsensus.vcxproj build_msvc/libbitcoin_consensus/libbitcoin_consensus.vcxproj
-END VERIFY SCRIPT-
|
2 years ago |
Russell Yanofsky
|
172096e9dd
|
scripted-diff: Rename libbitcoin_server.a to libbitcoin_node.a
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-
|
3 years ago |
MarcoFalke
|
fadecbd9a4
|
test: Fix tests on Windows
|
3 years ago |
Russell Yanofsky
|
ddf7ecc8df
|
multiprocess: Add bitcoin-node process spawning support
Add bitcoin-node startup code to let it spawn and be spawned by other
processes
|
4 years ago |
Andrew Chow
|
99309ab3e9
|
Allow disabling BDB in configure with --without-bdb
|
4 years ago |
nicolas.dorier
|
08c721dab2
|
[MSVC] Copy build output to src/ automatically after build
|
5 years ago |
nicolas.dorier
|
819c5ddad3
|
[MSVC] Enable Fuzz for functional tests
|
5 years ago |
nicolas.dorier
|
e47e79377f
|
[MSVC]: Create the config.ini as part of bitcoind build
|
5 years ago |
Aaron Clauson
|
750d1bc7df
|
Cleaned up and consolidated msvc build files to allow faster builds and easier migration to vs2019.
|
5 years ago |
Chun Kuan Lee
|
4a5e52cb51
|
msvc: Use a single file to specify the include path
|
6 years ago |
Chun Kuan Lee
|
8a1f0a38d4
|
scripted-diff: Remove NDEBUG pre-define
-BEGIN VERIFY SCRIPT-
sed -i 's/NDEBUG;//g' $(git grep --name-only 'NDEBUG;' build_msvc)
-END VERIFY SCRIPT-
|
6 years ago |
Chun Kuan Lee
|
82dcacb822
|
msvc: build leveldb locally
|
6 years ago |
Chun Kuan Lee
|
52091066be
|
msvc: build secp256k1 locally
|
6 years ago |
Aaron Clauson
|
ef7beaea6a
|
Visual Studio build configuration for Bitcoin Core
|
6 years ago |