From 5529b296834965afd9736b941aa2c094ff2f4648 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 2 Sep 2021 20:22:58 +0200 Subject: Rename project to ctor. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index fea7c11..caad51d 100644 --- a/README.md +++ b/README.md @@ -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. -- cgit v1.2.3