mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-10 21:45:38 +00:00
88bef66dfa
Signed-off-by: Chris Lapa <chris@lapa.com.au>
14 lines
178 B
Bash
Executable file
14 lines
178 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export BUILD_DIR="/${SOURCE_DIR}/build"
|
|
|
|
cd "${SOURCE_DIR}"
|
|
rm -Rf "${BUILD_DIR}"
|
|
meson "${BUILD_DIR}"
|
|
|
|
cd "${BUILD_DIR}"
|
|
ninja
|
|
ninja -C "${BUILD_DIR}" test
|