summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeParseArguments.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Modules: Fix CMakeParseArguments copyright noticeBrad King2010-08-171-2/+3
| | | | Fix format of the copyright notice to pass the ModuleNoticesTest.
* Add macro CMakeParseArguments() and use it in FPHSA()Alex Neundorf2010-08-141-0/+137
This adds a macro cmake_parse_arguments() (as discussed on cmake-devel) which can be used in macros or functions to help with parsing its arguments. Detailled docs are included. find_package_handle_standard_args() is the first user of this new macro. Alex