~alan-griffiths/mir/0.21-hacks

158.4.2 by Zygmunt Krynicki
Add native-compile.sh script
1
#!/bin/sh
2
# Native build script for Mir
3
#
4
set -e
5
265.2.1 by Kevin DuBois
update compile scripts for consistency and fixes
6
BUILD_DIR=build-linux-x86
7
if [ ! -e ${BUILD_DIR} ]; then
8
    mkdir ${BUILD_DIR}
9
    ( cd ${BUILD_DIR} && cmake ..)
214.2.9 by Sam Spilsbury
Revert changes to native-compile.sh
10
fi
158.4.2 by Zygmunt Krynicki
Add native-compile.sh script
11
265.2.1 by Kevin DuBois
update compile scripts for consistency and fixes
12
cmake --build ${BUILD_DIR}
13
14
GTEST_OUTPUT=xml:./
1247.3.4 by chris.gagnon
update native-compile.sh and tools/install_on_android with new test names.
15
${BUILD_DIR}/bin/mir_acceptance_tests
16
${BUILD_DIR}/bin/mir_integration_tests
17
${BUILD_DIR}/bin/mir_unit_tests