diff --git a/01-basic/A-hello-cmake/README.adoc b/01-basic/A-hello-cmake/README.adoc index 2848abf..9ed5ea9 100644 --- a/01-basic/A-hello-cmake/README.adoc +++ b/01-basic/A-hello-cmake/README.adoc @@ -17,8 +17,8 @@ A-hello-cmake$ tree ├── main.cpp ``` - * CMakeLists.txt - Contains the CMake commands you wish to run - * main.cpp - A simple "Hello World" cpp file. + * link:CMakeLists.txt[CMakeLists.txt] - Contains the CMake commands you wish to run + * link:main.cpp[main.cpp] - A simple "Hello World" cpp file. # Concepts @@ -233,7 +233,7 @@ All examples in this tutorial will use out-of-source builds. # Building the Examples -Below is sample output from building this example. +Below is sample output from building this example. [source,bash] ---- diff --git a/01-basic/B-hello-headers/README.adoc b/01-basic/B-hello-headers/README.adoc index da5c751..b875aa4 100644 --- a/01-basic/B-hello-headers/README.adoc +++ b/01-basic/B-hello-headers/README.adoc @@ -23,10 +23,10 @@ B-hello-headers$ tree └── main.cpp ``` - * CMakeLists.txt - Contains the CMake commands you wish to run. - * inc/Hello.h - The header file to include. - * src/Hello.cpp - A source file to compile. - * src/main.cpp - The source file with main. + * link:CMakeLists.txt[CMakeLists.txt] - Contains the CMake commands you wish to run. + * link:inc/Hello.h[inc/Hello.h] - The header file to include. + * link:src/Hello.cpp[src/Hello.cpp] - A source file to compile. + * link:src/main.cpp[src/main.cpp] - The source file with main. # Concepts diff --git a/01-basic/C-static-library/README.adoc b/01-basic/C-static-library/README.adoc index 7e1737b..fc418e4 100644 --- a/01-basic/C-static-library/README.adoc +++ b/01-basic/C-static-library/README.adoc @@ -21,10 +21,10 @@ $ tree └── main.cpp ``` - * CMakeLists.txt - Contains the CMake commands you wish to run - * inc/Hello.h - The header file to include - * src/Hello.cpp - A source file to compile - * src/main.cpp - The source file with main + * link:CMakeLists.txt[] - Contains the CMake commands you wish to run + * link:inc/Hello.h[] - The header file to include + * link:src/Hello.cpp[] - A source file to compile + * link:src/main.cpp[] - The source file with main # Concepts