Skip to content

Commit 60c1d61

Browse files
committed
conf: Project has been reorganised for future additions
1 parent 35cfc76 commit 60c1d61

File tree

8 files changed

+16
-471
lines changed

8 files changed

+16
-471
lines changed

CODE_OF_CONDUCT.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Code of Conduct
2+
3+
- You will be judged by your contributions first, and your sense of humor second.
4+
- Nobody owes you anything.
5+

CONTRIBUTING.md

Lines changed: 0 additions & 102 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2023 Tyler Swann and Monash DeepNeuron
189+
Copyright 2023-2025 Tyler Swann
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
# The C++ Programming Language
22

3-
This repository contains the source code for "The C++ Programming Language" mdBook. This book is available online or can be built locally and served in your browser. The structure of this book is inspired by the ["Rust Programming Language" Book](https://doc.rust-lang.org/book/).
3+
This repository contains the source code for "The C++ Programming Language" mdBook. This
4+
book is available online or can be built locally and served in your browser.
45

56
## Building
67

7-
To build this book you need [mdBook](https://rust-lang.github.io/mdBook/index.html) a tool for creating books with Markdown. mdBook can be installed using Cargo - Rust's package manager.
8+
To build this book you need [mdBook](https://rust-lang.github.io/mdBook/index.html) a
9+
tool for creating books with Markdown. mdBook can be installed using Cargo - Rust's
10+
package manager.
811

912
```sh
1013
cargo install mdbook --vers "0.4.40" --locked
1114
```
1215

13-
You can build this book you must clone this repository using Git. You can then build it and even serve it to localhost to view in your browser. The serve command will produce a localhost you can view.
16+
You can build this book you must clone this repository using Git. You can then build it
17+
and even serve it to localhost to view in your browser. The serve command will produce a
18+
localhost you can view.
1419

1520
```sh
1621
$ git clone https://github.com/oraqlle/cpp-book.git

book.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,9 @@ multilingual = false
88

99
src = "src"
1010

11-
[preprocessor.admonish]
12-
command = "mdbook-admonish"
13-
assets_version = "3.0.2" # do not edit: managed by `mdbook-admonish install`
14-
after = ["links"]
15-
1611
[output.html]
1712
mathjax-support = true
1813
git-repository-url = "https://github.com/oraqlle/cpp-book"
19-
additional-css = ["styles/mdbook-admonish.css", "styles/caption.css"]
2014

2115
[output.html.playground]
2216
editable = true

src/ch01-getting-started/hello-cmake.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ $ cmake --build build
174174
[100%] Built target hello_cmake
175175
```
176176

177-
This will produce a binary called `main` in the `build/` directory on Linux and MacOS and
178-
the `build/Debug/` directory on Windows. We can run our program like normal.
177+
This will produce a binary called `hello_cmake` in the `build/` directory on Linux and
178+
MacOS and the `build/Debug/` directory on Windows. We can run our program like normal.
179179

180180
```sh
181181
$ ./build/hello_cmake # ... or .\build\Debug\hello_cmake.exe on Windows

styles/caption.css

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)