forked from AuroraMiddleware/gtk
940126c427
getting_started.xml uses relative paths for including code examples and for some reason the base path is different with meson than with autotools. Switch both autotools and meson to generate the file and insert the absolute source path instead. This also cleans up the content file list: the expand content files have to be in the content file list as well, so just append them there.
17 lines
271 B
Bash
Executable File
17 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir -p _ccache
|
|
export CCACHE_BASEDIR="$(pwd)"
|
|
export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
|
|
|
|
mkdir _build
|
|
cd _build
|
|
../autogen.sh \
|
|
--enable-cloudproviders \
|
|
--enable-broadway-backend \
|
|
--enable-xinerama \
|
|
--enable-gtk-doc
|
|
make -j8
|