From 424d95e05cdd7c9d74cbb97aa8fd996983f8bac7 Mon Sep 17 00:00:00 2001 From: Aaron Ang Date: Tue, 25 Sep 2018 23:48:55 -0700 Subject: [PATCH 1/3] Fix typo --- 01-basic/B-hello-headers/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-basic/B-hello-headers/CMakeLists.txt b/01-basic/B-hello-headers/CMakeLists.txt index 283a35a..2c63e2c 100644 --- a/01-basic/B-hello-headers/CMakeLists.txt +++ b/01-basic/B-hello-headers/CMakeLists.txt @@ -15,7 +15,7 @@ set(SOURCES # Add an executable with the above sources add_executable(hello_headers ${SOURCES}) -# Set the direcoties that should be included in the build command for this target +# Set the directories that should be included in the build command for this target # when running g++ these will be included as -I/directory/path/ target_include_directories(hello_headers PRIVATE From 1274f61dd99d86498a43d81470e30a2117175b55 Mon Sep 17 00:00:00 2001 From: Aaron Ang Date: Wed, 26 Sep 2018 00:08:03 -0700 Subject: [PATCH 2/3] Fix typo: teh -> the --- 01-basic/D-shared-library/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-basic/D-shared-library/README.adoc b/01-basic/D-shared-library/README.adoc index e9f30c7..adda586 100644 --- a/01-basic/D-shared-library/README.adoc +++ b/01-basic/D-shared-library/README.adoc @@ -46,7 +46,7 @@ add_library(hello_library SHARED ---- This will be used to create a shared library with the name libhello_library.so with -the sources passed to teh +add_library()+ function. +the sources passed to the +add_library()+ function. ## Alias Target From daeb2839b8763ba03681135460c928dc8fb525e9 Mon Sep 17 00:00:00 2001 From: Aaron Ang Date: Wed, 26 Sep 2018 00:28:05 -0700 Subject: [PATCH 3/3] =?UTF-8?q?Fix=20typo:=20alow=20=E2=86=92=20allow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 01-basic/K-imported-targets/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-basic/K-imported-targets/README.adoc b/01-basic/K-imported-targets/README.adoc index 4c8b434..e7b5335 100644 --- a/01-basic/K-imported-targets/README.adoc +++ b/01-basic/K-imported-targets/README.adoc @@ -7,7 +7,7 @@ toc::[] # Introduction As previously mentioned in the link:../H-third-party-library[third party library], newer -versions of CMake alow you to link third party libraries using link:https://cmake.org/cmake/help/v3.6/prop_tgt/IMPORTED.html#prop_tgt:IMPORTED[imported] +ALIAS+ targets. +versions of CMake allow you to link third party libraries using link:https://cmake.org/cmake/help/v3.6/prop_tgt/IMPORTED.html#prop_tgt:IMPORTED[imported] +ALIAS+ targets. The files in this tutorial are below: