mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-12 18:44:59 +01:00
Currently the manpages are installed, but that is a bug. An upcoming commit will avoid installing manpages for targets that aren't configured, which removes the "install" target for fuzz builds.
17 lines
476 B
Bash
Executable file
17 lines
476 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
export CMAKE_GENERATOR="Ninja"
|
|
export BITCOIN_CONFIG="-DBUILD_FOR_FUZZING=ON"
|
|
export CI_OS_NAME="macos"
|
|
export NO_DEPENDS=1
|
|
export OSX_SDK=""
|
|
export RUN_UNIT_TESTS=false
|
|
export RUN_FUNCTIONAL_TESTS=false
|
|
export RUN_FUZZ_TESTS=true
|
|
export GOAL="all"
|