DMTF / libspdm

BSD 3-Clause "New" or "Revised" License
104 stars 100 forks source link

Use lower-case function name convention in Cmake files #2720

Closed alexteoh-intel closed 4 months ago

alexteoh-intel commented 4 months ago

Modern CMake's convention uses lower case for function names. There was a mixed use of lower case and upper case in this repo. Doing a search and replace to fixed them.

steven-bellock commented 4 months ago

From https://cliutils.gitlab.io/modern-cmake/chapters/intro/dodonot.html :

Use lowercase function names: CMake functions and macros can be called lower or upper case. Always use lower case. Upper case is for variables.