mirror of
1
0
Fork 0

Fixed typo

This commit is contained in:
itaidagan1 2020-06-20 19:04:15 +00:00
parent 7f255e6648
commit f19e8e8b94
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ The next two lists are heavily based on the excellent gist [Effective Modern CMa
* **Write a Config.cmake file**: This is what a library author should do to support clients.
* **Make ALIAS targets to keep usage consistent**: Using `add_subdirectory` and `find_package` should provide the same targets and namespaces.
* **Combine common functionality into clearly documented functions or macros**: Functions are better usually.
* **Use lowercase function names**: CMake functions and macros can be called lower or upper case. Always user lower case. Upper case is for variables.
* **Use lowercase function names**: CMake functions and macros can be called lower or upper case. Always use lower case. Upper case is for variables.
* **Use `cmake_policy` and/or range of versions**: Policies change for a reason. Only piecemeal set OLD policies if you have to.