Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| start [2022/11/15 10:52] – [About Ctor] deva | start [2023/07/24 15:25] (current) – [About Ctor] deva | ||
|---|---|---|---|
| Line 6: | Line 6: | ||
| Well, wonder no more - **ctor** is here! | Well, wonder no more - **ctor** is here! | ||
| - | "' | + | "' |
| Ctor is a C++ based build system, making it possible to configure and build complex projects without writing a single line of non-C++. | Ctor is a C++ based build system, making it possible to configure and build complex projects without writing a single line of non-C++. | ||
| Line 44: | Line 44: | ||
| In the root of your project you can create your first '' | In the root of your project you can create your first '' | ||
| <code c++> | <code c++> | ||
| - | #include <libctor.h> | + | #include <ctor.h> |
| namespace | namespace | ||
| { | { | ||
| - | BuildConfigurations | + | ctor:: |
| { | { | ||
| return | return | ||
| Line 54: | Line 54: | ||
| .target = " | .target = " | ||
| .sources = { " | .sources = { " | ||
| - | // See libctor.h for more options | + | // See ctor.h for more options |
| } | } | ||
| }; | }; | ||