summaryrefslogtreecommitdiff
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* some updatesKen Martin2003-07-142-48/+34
|
* ENH: Recurse subdirectoriesAndy Cedilnik2003-07-144-4/+64
|
* ERR: Removed duplicate generator documentation.eBrad King2003-07-101-2/+2
|
* ENH: Added SEE ALSO section to generated man page. Minor formatting ↵Brad King2003-07-103-14/+55
| | | | improvements for generated text-only documentation.
* ENH: Added CMAKE_STANDARD_INTRODUCTION macro defining standard documentation ↵Brad King2003-07-101-0/+8
| | | | for inclusion in every binary's documentation.
* ENH: Wrote basic description in full documentation block.Brad King2003-07-101-1/+4
|
* ERR: Generated source files need access to kwsysPrivate.h. Just copy it to ↵Brad King2003-07-101-3/+12
| | | | the build tree.
* ERR: Remove unused variableAndy Cedilnik2003-07-101-2/+0
|
* ENH: Added use of KWSYS_HEADER macro in c and cxx files to include kwsys ↵Brad King2003-07-109-16/+59
| | | | headers through their configured namespace.
* ENH: Add test for string and file commandsAndy Cedilnik2003-07-101-0/+5
|
* ENH: Add upper and lower case support. Close Bug #79 - STRING TOUPPER and ↵Andy Cedilnik2003-07-102-2/+44
| | | | TOLOWER
* ENH: Added escape support for ( and ).Brad King2003-07-091-0/+2
|
* ENH: Added support for # characters inside quoted arguments and for escaping ↵Brad King2003-07-092-16/+69
| | | | # in a non-quoted argument. Improved parsing speed by not compiling regular expressions on blank lines.
* ERR: Using strncpy instead of snprintf for portability.Brad King2003-07-091-4/+3
|
* ENH: Add MAKE_DIRECTORY and modify documentationAndy Cedilnik2003-07-082-5/+50
|
* ENH: Remove commented codeAndy Cedilnik2003-07-081-10/+0
|
* ENH: More speedupAndy Cedilnik2003-07-081-0/+7
|
* ENH: Attempt to speedup cmake of cmake on WindowsAndy Cedilnik2003-07-082-196/+207
|
* ENH: Add globbing to FILE commandAndy Cedilnik2003-07-085-2/+372
|
* BUG#65: Fixed inheritance of CMAKE_CURRENT_SOURCE_DIR and ↵Brad King2003-07-081-6/+8
| | | | CMAKE_CURRENT_BINARY_DIR.
* ENH: allow cancel and display of progress during cpu intensive configure stepsBill Hoffman2003-07-082-22/+75
|
* ENH: Fix exampleAndy Cedilnik2003-07-081-2/+2
|
* ERR: Added missing std::.Brad King2003-07-081-2/+2
|
* ENH: Improved name of cmake version variables. They are now CMake_VERSION ↵Brad King2003-07-073-5/+12
| | | | (major.minor) and CMake_VERSION_FULL (major.minor.patch).
* BUG: Removed extra newlines from help text.Brad King2003-07-071-4/+4
|
* ENH: Added support to write multiple help options with one command line. ↵Brad King2003-07-074-28/+105
| | | | Output files can now also be specified for the help options.
* ERR: Removed useless set.Brad King2003-07-071-1/+0
|
* ENH: Made ADD_DEPENDENCIES available from bootstrapped cmake. It will be ↵Brad King2003-07-071-2/+2
| | | | needed to build cmake.
* ENH: Registered global generators are now kept in a table in the cmake ↵Brad King2003-07-0721-59/+193
| | | | instance. Added support for documentation with a Generators section.
* BUG: Parsing of arguments from string by RunCommand before passing to ↵Brad King2003-07-071-86/+252
| | | | Process execution does not work with backslashes in path names. Until this is fixed, we cannot use Process execution from kwsys.
* ENH: Start working on a general file manipulation commandAndy Cedilnik2003-07-073-0/+203
|
* ENH: Add optional argument to GetLineFromStream which can let the caller ↵Andy Cedilnik2003-07-072-3/+14
| | | | know whether there was a new line character at the end of the line that was just read
* ENH: Made call to FormatMessage more robust.Brad King2003-07-071-3/+36
|
* ENH: Using new Process SetWorkingDirectory method instead of manually ↵Brad King2003-07-071-16/+1
| | | | implementing it.
* ENH: Implemented SetWorkingDirectory method.Brad King2003-07-072-4/+20
|
* ENH: Implemented SetWorkingDirectory method on Windows.Brad King2003-07-071-2/+30
|
* ENH: Using kwsys Process implementation to implement RunCommand.Brad King2003-07-071-249/+98
|
* ENH: Start working on Working Directory supportAndy Cedilnik2003-07-072-0/+34
|
* ENH: Using GetTempPath instead of TEMP environment variable to get a ↵Brad King2003-07-061-12/+6
| | | | location to write the Win9x forwarding executable.
* BUG: Argument parsers do not always remove double quotes from around an ↵Brad King2003-07-031-66/+108
| | | | argument that has no spaces.
* ENH: add linker flagsBill Hoffman2003-07-031-6/+26
|
* ENH: null terminate at the end of the listBill Hoffman2003-07-031-1/+3
|
* BUG: Install target for standard header wrappers must point at the std ↵Brad King2003-07-031-2/+2
| | | | subdirectory in the installation.
* ERR: Added cast to remove warning. We know the length of the string will ↵Brad King2003-07-021-1/+1
| | | | not be beyond 2^31.
* ERR: Added casts to remove type conversion warnings. Pointer differences ↵Brad King2003-07-011-6/+11
| | | | can be 64-bit, but unsigned long is 32-bit on many platforms. We know we are not traversing more data than can be handled by an unsigned long, though, because the length argument is an unsigned long.
* ERR: Should use %p to pass HANDLE values on a command line, not %d.Brad King2003-07-012-3/+3
|
* ERR: Removed unreachable code.Brad King2003-07-011-1/+0
|
* ERR: Reduced requirements on preprocessor for export macro due to ↵Brad King2003-07-012-2/+2
| | | | limitations of Mac preprocessor. The preprocessor can be fixed by using -no-cpp-precomp, but we don't want to require that option for every source file that includes our headers.
* ERR: Added explicit cast from size_t to int. We know that the data will not ↵Brad King2003-07-011-1/+1
| | | | be out of range.
* ERR: Remove warnings on WindowsAndy Cedilnik2003-06-303-16/+24
|