summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* STYLE: Nightly Version updateAndy Cedilnik2006-09-231-1/+1
|
* ENH: added elseifKen Martin2006-09-225-10/+160
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-221-1/+1
|
* COMP: Fix shadowed local variable created by previous cmake_force change.Brad King2006-09-211-4/+0
|
* BUG: Enabled use of EscapeForShell to properly escape custom command lines. ↵Brad King2006-09-212-3/+4
| | | | This addresses bug#3786 for Xcode.
* BUG: Need to escape spaces in custom command line arguments.Brad King2006-09-211-1/+1
|
* BUG: Do not escape parens because we need to be able to reference make ↵Brad King2006-09-211-2/+1
| | | | variables in the scripts.
* BUG: Centralized generation of command line arguments in escaped form. This ↵Brad King2006-09-218-70/+96
| | | | addresses bug#3786 for several platforms.
* ENH: Handle zip (command line was too long)Andy Cedilnik2006-09-211-7/+16
|
* BUG: Windows_ShellArgument: need to escape if the string contains one of a ↵Brad King2006-09-211-24/+29
| | | | set of special characters as well as spaces. Moved test for needing escapes to a separate method kwsysSystemWindowsShellArgumentNeedsEscape.
* ENH: Adding 'System' component of C sources to hold system tools written in ↵Brad King2006-09-214-130/+241
| | | | C. Moved windows shell command line argument escaping code to kwsysSystem_Windows_ShellArgument and kwsysSystem_Windows_ShellArgumentSize.
* ENH: Added KWSYS_SHARED_FORWARD_OPTION_COMMAND option to allow users to ↵Brad King2006-09-211-13/+56
| | | | replace the command executed. Extended documentation at top of file.
* STYLE: Nightly Version updateAndy Cedilnik2006-09-211-1/+1
|
* BUG: cmake_force needs to be written into build.make as well as Makefile.Brad King2006-09-201-11/+11
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-201-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-191-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-181-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-171-1/+1
|
* STYLE: Fixed line-too-long.Brad King2006-09-161-1/+2
|
* BUG: Do not look for linker language unless it is needed.Brad King2006-09-161-11/+11
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-161-1/+1
|
* ENH: Adding support to link specifically to an archive or a shared library ↵Brad King2006-09-153-35/+246
| | | | based on the file name specified. This fixes the problem of having -lfoo linking to libfoo.so even when it came from libfoo.a being specified.
* STYLE: Nightly Version updateAndy Cedilnik2006-09-151-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-141-1/+1
|
* ENH: Patch from Alex to speed dependency scanning approximately 2x.Brad King2006-09-132-15/+45
|
* ENH: Added diagnosis of bad target names.Brad King2006-09-131-0/+23
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-131-1/+1
|
* ENH: put the if in the right placeBill Hoffman2006-09-121-5/+5
|
* ENH: fix for BUG: #739 again, makefiles did not depend on external full path ↵Bill Hoffman2006-09-121-1/+6
| | | | libraries
* STYLE: Nightly Version updateAndy Cedilnik2006-09-121-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-111-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-101-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-091-1/+1
|
* BUG: Fixed ordering of code generated in Makefile and build.make files to ↵Brad King2006-09-083-35/+40
| | | | make sure .SUFFIXES rule comes as early as possible. Also cleaned up documentation in generated files.
* STYLE: Fixed line-too-long.Brad King2006-09-081-2/+4
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-081-1/+1
|
* ENH: Patch from Toni Timonen to allow cross-compiling of DLLs.Brad King2006-09-071-35/+43
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-071-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-061-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-051-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-041-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-031-1/+1
|
* BUG: Patch from Alex to fix name of includecache files to not look like ↵Brad King2006-09-021-1/+2
| | | | source files.
* STYLE: Nightly Version updateAndy Cedilnik2006-09-021-1/+1
|
* STYLE: Fixed line-too-long warning.Brad King2006-09-0115-15/+16
|
* STYLE: Nightly Version updateAndy Cedilnik2006-09-011-1/+1
|
* BUG: Fix automatic computation of binary path to work for subdirectories of ↵Brad King2006-08-311-44/+56
| | | | out of source directories. This addresses bug#3592.
* ENH: Make sure all custom command outputs are up to date before scanning ↵Brad King2006-08-314-135/+22
| | | | dependencies. This avoids the need to pass a list of generated files to the dependency scanning code and to rescan after the files have been generated. Currently there is no notion of implicit dependencies of the custom commands themselves so this design is safe. We only need to make sure implicit dependencies are up to date before the make process for the /build part of a target is executed because only this process loads them. This is a step towards fixing bug#3658.
* ENH: Patch from Alex to add IsDiscouraged method for future use in ↵Brad King2006-08-3115-2/+100
| | | | generating separate documentation for old commands. Also modified documentation of MAKE_DIRECTORY and REMOVE commands to indicate they should not be used.
* ENH: Do not generate install target unless some INSTALL or INSTALL_* ↵Brad King2006-08-316-52/+82
| | | | commands have been used. This addresses bug#2827.