diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-09-02 20:22:58 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-09-02 20:23:41 +0200 |
commit | 5529b296834965afd9736b941aa2c094ff2f4648 (patch) | |
tree | f2811d12f6967ba89610cb9eb92d237c29ec163b /bootstrap.sh | |
parent | 77582c4c6804dade46cc7bf991f48b00e1391eff (diff) |
Rename project to ctor.
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index a232740..e589a2c 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,4 +1,4 @@ #!/bin/bash echo "Bootstrapping..." -g++ -std=c++17 -I. -Isrc -pthread src/*.cc cppbuild.cc -o cppbuild && \ -echo "Done. Now run ./cppbuild to build." +g++ -std=c++17 -I. -Isrc -pthread src/*.cc ctor.cc -o ctor && \ +echo "Done. Now run ./ctor to build." |