added docker files to allow testing with different cmake versions for #8

This commit is contained in:
ttroy50
2016-04-15 00:01:59 +01:00
parent 1208416848
commit 4e0dbb6bbf
7 changed files with 203 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
ROOT_DIR=`pwd`
dir="01-basic/I-compiling-with-clang"
if [ -d "$ROOT_DIR/$dir/build.clang" ]; then
echo "deleting $dir/build.clang"
rm -r $dir/build.clang
fi

View File

@@ -0,0 +1,9 @@
#!/bin/bash
ROOT_DIR=`pwd`
dir="01-basic/J-building-with-ninja"
if [ -d "$ROOT_DIR/$dir/build.ninja" ]; then
echo "deleting $dir/build.ninja"
rm -r $dir/build.ninja
fi