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 /README.md | |
parent | 77582c4c6804dade46cc7bf991f48b00e1391eff (diff) |
Rename project to ctor.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -7,7 +7,7 @@ tracking and so on. Many good build-systems exists which all have their strengths and weeknesses autotools, cmake, meson to name a few. -`cppbuild` tries to make it possible to use all the cool features of the above +`ctor` tries to make it possible to use all the cool features of the above in a tool only using C++ (through the compiler). ## Getting Started: 3 Simple Steps @@ -16,7 +16,7 @@ Step 1: Create a build configuration, in C++ A really simple example ('hello_config.cc'): ```c++ -#include "libcppbuild.h" +#include "libctor.h" namespace { @@ -42,17 +42,17 @@ REG(helloConfigs); ``` Step 2: Bootstrap the system by compiling your build configuration along with -the libcppbuild.a static library: +the libctor.a static library: ```sh -g++ -std=c++17 hello_config.cc -pthread libcppbuild.a -o cppbuild +g++ -std=c++17 hello_config.cc -pthread libctor.a -o ctor ``` -Step 3: Run cppbuild to build you application: +Step 3: Run ctor to build you application: ```sh -./cppbuild +./ctor ``` Any consecutive changes to the build configuration or any of the sources will automagically trigger a rebuild of all (and only) affected sources the next time -cppbuild is executed. +ctor is executed. |