[ox] Remove permanent build directory

(synced from ec40d80e6d)
This commit is contained in:
2018-04-13 21:11:51 -05:00
parent adebe4399e
commit a9444d6cf7
3 changed files with 14 additions and 42 deletions
+8
View File
@@ -0,0 +1,8 @@
#! /usr/bin/env bash
set -e
for f in $(find $1 -maxdepth 1 -mindepth 1 -type d)
do
cmake --build "$f" --target $2 --
done