diff options
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index e1ee5eb..a232740 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,2 +1,4 @@ #!/bin/bash -g++ -std=c++17 -I. -Isrc -pthread src/*.cc cppbuild.cc -o cppbuild +echo "Bootstrapping..." +g++ -std=c++17 -I. -Isrc -pthread src/*.cc cppbuild.cc -o cppbuild && \ +echo "Done. Now run ./cppbuild to build." |