mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 12:14:36 +03:00
added docker files to allow testing with different cmake versions for #8
This commit is contained in:
9
01-basic/I-compiling-with-clang/pre_test.sh
Executable file
9
01-basic/I-compiling-with-clang/pre_test.sh
Executable 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
|
||||
9
01-basic/J-building-with-ninja/pre_test.sh
Executable file
9
01-basic/J-building-with-ninja/pre_test.sh
Executable 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
|
||||
Reference in New Issue
Block a user