git repos / PlatformFolders

commit f0488f27

sum01 · 2019-03-06 19:12
f0488f271be4ea5a214dd27dd45989c345080055 patch · browse files
parent 0267c8388fda8eabaf252a45b008d154ee75bef7

Minor spelling fix in README

Also slightly reworded the example cmake usage.

Changed files

M README.md before
diff --git a/README.md b/README.md index 4978a0f..3185a8c 100644 --- a/README.md +++ b/README.md
@@ -45,9 +45,9 @@ This project should be compatible with things like [Cmake's ExternalProject_Add]
You can also follow the [build step](#building) below to install at a system level, and use [Cmake's find_package](https://cmake.org/cmake/help/latest/command/find_package.html).
```cmake
-# Specifying a version is optional -- note it follows by Semver
+# Specifying a version is optional -- note it follows Semver
find_package(platform_folders 3.1.0 REQUIRED)
-# Which creates the IMPORTED lib "sago::platform_folders"
+# Which imports the linkable library "sago::platform_folders"
# Use it like so...
target_link_libraries(EXEORLIBNAME PRIVATE sago::platform_folders)
```