From a6173425191ce6ad74bcd998fa466c06fce1b1f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Sat, 15 Oct 2016 23:45:11 +0200 Subject: [PATCH] Make 32 build also do `testpaint` target --- scripts/linux/build.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/linux/build.sh b/scripts/linux/build.sh index 8b9a629648..72b87202ce 100755 --- a/scripts/linux/build.sh +++ b/scripts/linux/build.sh @@ -69,6 +69,13 @@ pushd build chmod g+s $(pwd) # CMAKE and MAKE opts from environment docker run -v $PARENT:/work/openrct2 -w /work/openrct2/build -i -t openrct2/openrct2:64bit-only bash -c "cmake ../ $OPENRCT2_CMAKE_OPTS && make $OPENRCT_MAKE_OPTS" + elif [[ $TARGET == "linux" ]] + then + cmake $OPENRCT2_CMAKE_OPTS .. + # NOT the same variable as above + # this target also includes building & running of testpaint + make $OPENRCT2_MAKE_OPTS testpaint + ./testpaint else cmake $OPENRCT2_CMAKE_OPTS .. # NOT the same variable as above