Replace build scripts with CMake
Rebuilding everything each time was getting a bit slow.
This commit is contained in:
@@ -1,12 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd "$(git rev-parse --show-toplevel)"
|
||||
|
||||
fails=0
|
||||
|
||||
build/parse_tests || fails=`expr $fails + 1`
|
||||
build/desugar_tests || fails=`expr $fails + 1`
|
||||
build/fsa_tests || fails=`expr $fails + 1`
|
||||
build/construct_tests || fails=`expr $fails + 1`
|
||||
|
||||
if [ $fails -eq 0 ]; then echo Tests OK; fi
|
||||
ctest --test-dir build
|
||||
|
||||
Reference in New Issue
Block a user