diff --git a/README.md b/README.md index e7a87c5b4..ce09e7227 100644 --- a/README.md +++ b/README.md @@ -22,15 +22,15 @@ ### [Chapter 1: From a Simple Executable to Libraries](chapter-01/README.md) - [Compiling a single source file into an executable](chapter-01/recipe-01/README.md) -- [Switching Generators](chapter-01/recipe-02/README.md) -- [Building and Linking Static and Shared Libraries](chapter-01/recipe-03/README.md) -- [Controlling Compilation with Conditionals](chapter-01/recipe-04/README.md) -- [Presenting Options to the User](chapter-01/recipe-05/README.md) -- [Specifying the Compiler](chapter-01/recipe-06/README.md) -- [Switching the Build Type](chapter-01/recipe-07/README.md) -- [Controlling Compiler Flags](chapter-01/recipe-08/README.md) -- [Setting the Standard for the Language](chapter-01/recipe-09/README.md) -- [Using Control Flow Constructs](chapter-01/recipe-10/README.md) +- [Switching generators](chapter-01/recipe-02/README.md) +- [Building and linking static and shared libraries](chapter-01/recipe-03/README.md) +- [Controlling compilation with conditionals](chapter-01/recipe-04/README.md) +- [Presenting options to the user](chapter-01/recipe-05/README.md) +- [Specifying the compiler](chapter-01/recipe-06/README.md) +- [Switching the build type](chapter-01/recipe-07/README.md) +- [Controlling compiler flags](chapter-01/recipe-08/README.md) +- [Setting the standard for the language](chapter-01/recipe-09/README.md) +- [Using control flow constructs](chapter-01/recipe-10/README.md) ### [Chapter 2: Detecting the Environment](chapter-02/README.md) diff --git a/chapter-01/README.md b/chapter-01/README.md index a7840de27..186c3d05c 100644 --- a/chapter-01/README.md +++ b/chapter-01/README.md @@ -1,12 +1,12 @@ # Chapter 1: From a Simple Executable to Libraries - [Compiling a single source file into an executable](recipe-01/README.md) -- [Switching Generators](recipe-02/README.md) -- [Building and Linking Static and Shared Libraries](recipe-03/README.md) -- [Controlling Compilation with Conditionals](recipe-04/README.md) -- [Presenting Options to the User](recipe-05/README.md) -- [Specifying the Compiler](recipe-06/README.md) -- [Switching the Build Type](recipe-07/README.md) -- [Controlling Compiler Flags](recipe-08/README.md) -- [Setting the Standard for the Language](recipe-09/README.md) -- [Using Control Flow Constructs](recipe-10/README.md) +- [Switching generators](recipe-02/README.md) +- [Building and linking static and shared libraries](recipe-03/README.md) +- [Controlling compilation with conditionals](recipe-04/README.md) +- [Presenting options to the user](recipe-05/README.md) +- [Specifying the compiler](recipe-06/README.md) +- [Switching the build type](recipe-07/README.md) +- [Controlling compiler flags](recipe-08/README.md) +- [Setting the standard for the language](recipe-09/README.md) +- [Using control flow constructs](recipe-10/README.md) diff --git a/chapter-01/recipe-02/README.md b/chapter-01/recipe-02/README.md index aa8a8c3ef..27a194cbb 100644 --- a/chapter-01/recipe-02/README.md +++ b/chapter-01/recipe-02/README.md @@ -1,4 +1,4 @@ -# Switching Generators +# Switching generators A single `CMakeLists.txt` can be used to configure projects for different toolstacks on different platforms. CMake is a build system _generator_. diff --git a/chapter-01/recipe-02/title.txt b/chapter-01/recipe-02/title.txt index c17050223..5fd49e4ef 100644 --- a/chapter-01/recipe-02/title.txt +++ b/chapter-01/recipe-02/title.txt @@ -1 +1 @@ -Switching Generators +Switching generators diff --git a/chapter-01/recipe-03/README.md b/chapter-01/recipe-03/README.md index ff29c4cd8..4524b44b3 100644 --- a/chapter-01/recipe-03/README.md +++ b/chapter-01/recipe-03/README.md @@ -1,4 +1,4 @@ -# Building and Linking Static and Shared Libraries +# Building and linking static and shared libraries Abstract to be written ... diff --git a/chapter-01/recipe-03/title.txt b/chapter-01/recipe-03/title.txt index 08e5d3d42..2474f1d79 100644 --- a/chapter-01/recipe-03/title.txt +++ b/chapter-01/recipe-03/title.txt @@ -1 +1 @@ -Building and Linking Static and Shared Libraries +Building and linking static and shared libraries diff --git a/chapter-01/recipe-04/README.md b/chapter-01/recipe-04/README.md index d00e04a5f..82a7c4d4a 100644 --- a/chapter-01/recipe-04/README.md +++ b/chapter-01/recipe-04/README.md @@ -1,4 +1,4 @@ -# Controlling Compilation with Conditionals +# Controlling compilation with conditionals Abstract to be written ... diff --git a/chapter-01/recipe-04/title.txt b/chapter-01/recipe-04/title.txt index c135d75c1..9ce53901c 100644 --- a/chapter-01/recipe-04/title.txt +++ b/chapter-01/recipe-04/title.txt @@ -1 +1 @@ -Controlling Compilation with Conditionals +Controlling compilation with conditionals diff --git a/chapter-01/recipe-05/README.md b/chapter-01/recipe-05/README.md index d3262076b..db62b703d 100644 --- a/chapter-01/recipe-05/README.md +++ b/chapter-01/recipe-05/README.md @@ -1,4 +1,4 @@ -# Presenting Options to the User +# Presenting options to the user Abstract to be written ... diff --git a/chapter-01/recipe-05/title.txt b/chapter-01/recipe-05/title.txt index 948b98815..41e18b534 100644 --- a/chapter-01/recipe-05/title.txt +++ b/chapter-01/recipe-05/title.txt @@ -1 +1 @@ -Presenting Options to the User +Presenting options to the user diff --git a/chapter-01/recipe-06/README.md b/chapter-01/recipe-06/README.md index faa4eea9e..5fc877b68 100644 --- a/chapter-01/recipe-06/README.md +++ b/chapter-01/recipe-06/README.md @@ -1,4 +1,4 @@ -# Specifying the Compiler +# Specifying the compiler Abstract to be written ... diff --git a/chapter-01/recipe-06/title.txt b/chapter-01/recipe-06/title.txt index 01e4e72dc..d73221fea 100644 --- a/chapter-01/recipe-06/title.txt +++ b/chapter-01/recipe-06/title.txt @@ -1 +1 @@ -Specifying the Compiler +Specifying the compiler diff --git a/chapter-01/recipe-07/README.md b/chapter-01/recipe-07/README.md index 51db3a0da..23f23a475 100644 --- a/chapter-01/recipe-07/README.md +++ b/chapter-01/recipe-07/README.md @@ -1,4 +1,4 @@ -# Switching the Build Type +# Switching the build type Abstract to be written ... diff --git a/chapter-01/recipe-07/title.txt b/chapter-01/recipe-07/title.txt index f6636a773..085fb29f8 100644 --- a/chapter-01/recipe-07/title.txt +++ b/chapter-01/recipe-07/title.txt @@ -1 +1 @@ -Switching the Build Type +Switching the build type diff --git a/chapter-01/recipe-08/README.md b/chapter-01/recipe-08/README.md index ff9d1913b..6ba3e8d39 100644 --- a/chapter-01/recipe-08/README.md +++ b/chapter-01/recipe-08/README.md @@ -1,4 +1,4 @@ -# Controlling Compiler Flags +# Controlling compiler flags This recipe shows how to set compiler flags for targets using `target_compile_options()`. The compiler options set are only valid for GCC and diff --git a/chapter-01/recipe-08/title.txt b/chapter-01/recipe-08/title.txt index 001dfea0e..c4d3b5ae4 100644 --- a/chapter-01/recipe-08/title.txt +++ b/chapter-01/recipe-08/title.txt @@ -1 +1 @@ -Controlling Compiler Flags +Controlling compiler flags diff --git a/chapter-01/recipe-09/README.md b/chapter-01/recipe-09/README.md index cecc7d916..e15b7eca2 100644 --- a/chapter-01/recipe-09/README.md +++ b/chapter-01/recipe-09/README.md @@ -1,4 +1,4 @@ -# Setting the Standard for the Language +# Setting the standard for the language Abstract to be written ... diff --git a/chapter-01/recipe-09/title.txt b/chapter-01/recipe-09/title.txt index 318de9be6..d4192cbae 100644 --- a/chapter-01/recipe-09/title.txt +++ b/chapter-01/recipe-09/title.txt @@ -1 +1 @@ -Setting the Standard for the Language +Setting the standard for the language diff --git a/chapter-01/recipe-10/README.md b/chapter-01/recipe-10/README.md index 2cff17631..c292c737e 100644 --- a/chapter-01/recipe-10/README.md +++ b/chapter-01/recipe-10/README.md @@ -1,4 +1,4 @@ -# Using Control Flow Constructs +# Using control flow constructs Abstract to be written ... diff --git a/chapter-01/recipe-10/title.txt b/chapter-01/recipe-10/title.txt index 66157aab2..70b684fd9 100644 --- a/chapter-01/recipe-10/title.txt +++ b/chapter-01/recipe-10/title.txt @@ -1 +1 @@ -Using Control Flow Constructs +Using control flow constructs