b95a338b30
d1a3d57 bulid: fix "make translate" when out-of-tree (Cory Fields) 340012d build: add temporary fix for "bad magic number" error in out-of-tree builds (Cory Fields) 142ffc7 travis: use out-of-tree build (Cory Fields) 92e37a3 build: fix out-of-tree 'make deploy' for osx (Cory Fields) ab95d5d build: a few ugly hacks to get the rpc tests working out-of-tree (Cory Fields) fc4ad0c build: more out-of-tree fixups (Cory Fields) 0cb0f26 build: out-of-tree fixups (Cory Fields)
15 lines
508 B
Python
15 lines
508 B
Python
#!/usr/bin/env python3
|
|
# Copyright (c) 2013-2016 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
SRCDIR="@abs_top_srcdir@"
|
|
BUILDDIR="@abs_top_builddir@"
|
|
EXEEXT="@EXEEXT@"
|
|
|
|
# These will turn into comments if they were disabled when configuring.
|
|
@ENABLE_WALLET_TRUE@ENABLE_WALLET=1
|
|
@BUILD_BITCOIN_UTILS_TRUE@ENABLE_UTILS=1
|
|
@BUILD_BITCOIND_TRUE@ENABLE_BITCOIND=1
|
|
@ENABLE_ZMQ_TRUE@ENABLE_ZMQ=1
|