Replace build scripts with CMake

Rebuilding everything each time was getting a bit slow.
This commit is contained in:
2024-10-27 00:12:17 +01:00
parent 403d081e13
commit c58cabd2e6
6 changed files with 66 additions and 45 deletions

View File

@@ -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