summaryrefslogtreecommitdiffstats
path: root/Source/cmCommandArgumentParserHelper.h
Commit message (Collapse)AuthorAgeFilesLines
* strings: Remove cmStdString referencesBen Boeckel2014-03-081-2/+2
| | | | | | | | | | | Casts from std::string -> cmStdString were high on the list of things taking up time. Avoid such implicit casts across function calls by just using std::string everywhere. The comment that the symbol name is too long is no longer relevant since modern debuggers alias the templates anyways and the size is a non-issue since the underlying methods are generated since it's inherited.
* stringapi: Use strings for AddString methodsBen Boeckel2014-03-081-1/+1
| | | | It gets turned into a string anyways, so pass them in.
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-3/+3
| | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
* Remove UnionsAvailable member from 2 classesYury G. Kudryashov2012-03-031-1/+0
| | | | | These classes were copied from cmDependsJavaParserHelper that really needs this member.
* Add a flag to warn about system filesBen Boeckel2010-09-011-0/+1
|
* Rename strict-mode to warn-uninitializedBen Boeckel2010-09-011-1/+1
|
* Make --strict-mode option, and integrate with cmake-guiBill Hoffman2010-09-011-0/+1
|
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* ENH: Improve argument parsing error messagesBrad King2008-09-241-0/+1
| | | | | | | | | | | | | | Previously error messages produced by parsing of command argument variable references, such as bad $KEY{VAR} syntax or a bad escape sequence, did not provide good context information. Errors parsing arguments inside macro invocations gave no context at all. Furthermore, some errors such as a missing close curly "${VAR" would be reported but build files would still be generated. These changes teach CMake to report errors with good context information for all command argument parsing problems. Policy CMP0010 is introduced so that existing projects that built despite such errors will continue to work.
* BUG: Fixed @ONLY configuration to not try to parse ${} syntax at all. This ↵Brad King2007-06-061-3/+1
| | | | fixes the original fix to bug#4393 and adds a test.
* ENH: add atonly support to cmCommandArgumentParserHelper.cxx and remove old ↵Bill Hoffman2007-02-091-2/+6
| | | | non-yacc parser code from cmMakefile.cxx
* BUG: Do not replace @VAR@ syntax in list files. This addresses bug #2722.Brad King2006-10-041-0/+3
|
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-21/+20
|
* STYLE: Fix some style issuesAndy Cedilnik2006-03-101-6/+8
|
* ENH: Improve handling of escaped charactersAndy Cedilnik2005-06-171-0/+3
|
* ENH: More cleanupsAndy Cedilnik2005-06-141-21/+1
|
* ENH: More optimizationAndy Cedilnik2005-06-131-1/+1
|
* ENH: Handle errors and optimize a bitAndy Cedilnik2005-06-131-1/+13
|
* ENH: Handle more casesAndy Cedilnik2005-06-081-1/+1
|
* ENH: Initial import (not working yet)Andy Cedilnik2005-06-081-0/+112