From d77b62163a67676bdf2f913e7d6fcd4ba2ca6513 Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Thu, 29 Mar 2018 16:00:52 +0200 Subject: [PATCH] Fixing a typo --- chapters/basics.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chapters/basics.md b/chapters/basics.md index 7f2ccc9..cd530f5 100644 --- a/chapters/basics.md +++ b/chapters/basics.md @@ -15,7 +15,7 @@ This line is special! [^2] The version of CMake will also dictate the policies, {% hint style='info' %} -If you really need to set to a low value here, you can use [`cmake_policy`] to conditinally increase the policy level or set a specific policy. Please at least do this for your macOS users! +If you really need to set to a low value here, you can use [`cmake_policy`](https://cmake.org/cmake/help/v3.0/command/cmake_policy.html) to conditionally increase the policy level or set a specific policy. Please at least do this for your macOS users! {% endhint %} @@ -111,4 +111,3 @@ target_link_libraries(calc PUBLIC calclib) [^3]: The `::` syntax was originally intended for `INTERFACE IMPORTED` libraries, which were explicitly supposed to be libraries defined outside the current project. But, because of this, most of the `target_*` commands don't work on `IMPORTED` libraries, making them hard to set up yourself. So don't use the `IMPORTED` keyword for now, and use an `ALIAS` target instead. There's a project in the works to fix this limitation for CMake 3.11. -[`cmake_policy`]: https://cmake.org/cmake/help/v3.0/command/cmake_policy.html