summaryrefslogtreecommitdiff
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-08-29 13:24:03 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2021-08-29 13:24:03 +0200
commit77582c4c6804dade46cc7bf991f48b00e1391eff (patch)
treeafcac42f307bb6b57f2b32569cf5bdd29ad7c468 /bootstrap.sh
parent5da56616cccf4e595ec6a556cf1aef40b37746e3 (diff)
Move getoptpp submodule into src as well.
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh4
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."