forked from AuroraMiddleware/gtk
003dc26a57
Set to "manual" because it takes 40-60 minutes depending on the ccache hit rate.
11 lines
138 B
Bash
Executable File
11 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir -p _ccache
|
|
export CCACHE_BASEDIR="$(pwd)"
|
|
export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
|
|
|
|
./autogen.sh
|
|
make -j8
|