From 2344c126b0b2a12c3fd6457b853f20414aa60c2b Mon Sep 17 00:00:00 2001 From: Lars Melchior Date: Wed, 3 Jun 2020 14:29:28 +0200 Subject: [PATCH] fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7856ab5..e1b2f1a 100644 --- a/README.md +++ b/README.md @@ -127,8 +127,8 @@ Simply remove the standalone / documentation directory and according github work > Can I build the standalone and tests at the same time? To keep the template modular, projects have been separated into their own CMake modules. -However it's easy to create a new directory, say `all`, that uses CPM.cmake to add both the standalone and the tests (as well as any other subprojects). -It's not recommended to include the standalone or tests from the main CMakeLists, as it will make the project mode difficult to be used as a library. +However it's easy to create a new directory, say `all`, that uses `CPMAddProject` to add both the standalone and the tests as well as any other subprojects to a single build. +Note, that it's not recommended to include the standalone or tests from the main CMakeLists, as it will make the project more difficult for others to be used as a library. > I see you are using `GLOB` to add source files in CMakeLists.txt. Isn't that evil?