summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Added computation of object file names that are almost always short ↵Brad King2007-03-165-24/+174
| | | | enough to not exceed the filesystem path length limitation. This is useful when a source file from outside the tree is referenced with a long full path. The object file name previously would contain the entire path which when combined with the build output directory could exceed the filesystem limit. Now CMake recognizes this case and replaces enough of the beginning of the full path to the source file with an md5sum of the replaced portion to make the name fit on disk. This addresses bug#4520.
* BUG: change in how set cache overrides local definitions. Should mainly be a ↵Ken Martin2007-03-151-1/+2
| | | | NOP change for most cases
* STYLE: Nightly Version updateAndy Cedilnik2007-03-151-1/+1
|
* BUG: Reverting previous changes related to using an empty string for a ↵Brad King2007-03-143-6/+6
| | | | relative path to the current directory. Too many places want the . version. Instead we can just convert the . to an empty string in the one place that motiviated the original change.
* BUG: When the current output directory is a link directory we need to ↵Brad King2007-03-141-0/+4
| | | | reference it with the relative path "." instead of an empty relative path.
* ENH: Added MD5 implementation to KWSys.Brad King2007-03-144-2/+697
|
* BUG: During relative path conversion if the remote and target paths are the ↵Brad King2007-03-141-2/+2
| | | | same return the empty string instead of ".".
* BUG: All executable and library project types should specify a program ↵Brad King2007-03-141-21/+6
| | | | database file name for all configurations. Even when debug information is not used the .pdb file specified is used to construct the name of a .idb file that exists for all configurations when building with the VS IDE.
* ENH: some more cleanupKen Martin2007-03-138-16/+20
|
* ENH: add project to target map, not used yet, but createdBill Hoffman2007-03-135-19/+139
|
* BUG: Fix check of EXCLUDE_FROM_ALL property to use boolean type. This is ↵Brad King2007-03-131-1/+1
| | | | required for installation of subdirectories to work.
* STYLE: Nightly Version updateAndy Cedilnik2007-03-131-1/+1
|
* ENH: added remove_directory bug 2937Ken Martin2007-03-121-1/+13
|
* BUG: Preserve symlinks during installation. This addresses bug#4384.Brad King2007-03-121-0/+68
|
* ENH: Added kwsys SystemTools::CreateSymlink and SystemTools::ReadSymlink.Brad King2007-03-124-15/+50
|
* ENH: typoKen Martin2007-03-122-9/+5
|
* ENH: small enchancement for bug 3776.Ken Martin2007-03-121-1/+13
|
* BUG: Split precompiled header flags into a separate per-global-generator ↵Brad King2007-03-128-85/+154
| | | | flag map. This is needed because the flag mappings differ across VS IDE versions. This fixes bug#3512 for VS8 where as the previous fix only worked for VS7.
* COMP: XCode fixKen Martin2007-03-121-1/+1
|
* ENH: some code cleanupKen Martin2007-03-1217-63/+44
|
* STYLE: Nightly Version updateAndy Cedilnik2007-03-111-1/+1
|
* STYLE: Fix line-too-long.Brad King2007-03-101-2/+4
|
* STYLE: Nightly Version updateAndy Cedilnik2007-03-101-1/+1
|
* BUG: Use real path subdirectory check instead of substring comparison to ↵Brad King2007-03-091-40/+17
| | | | identify when paths are below the relative path tops. Otherwise when the build tree is next to the source tree with the same name plus a suffix the relative path from the binary to source tree is allowed even though it goes outside cmake-managed directories.
* COMP: Fix warning about binding reference-to-non-const to an rvalue on VS6. ↵Brad King2007-03-091-17/+20
| | | | It does not seem to be doing the proper auto_ptr_ref conversions. Instead use the const_cast work-around on this platform.
* COMP: Fixed unreferenced parameter warning for VS6 with /W4.Brad King2007-03-091-1/+5
|
* BUG: Re-enable backward compatibility replacements in user-provided VS6 DSP ↵Brad King2007-03-091-1/+1
| | | | template files.
* ENH: Implemented use of cmTarget::GetDirectory() in Visual Studio 6 ↵Brad King2007-03-091-2/+55
| | | | generator. This is an incremental fix for bug#4210.
* ENH: Added target properties ARCHIVE_OUTPUT_DIRECTORY, ↵Brad King2007-03-092-28/+135
| | | | LIBRARY_OUTPUT_DIRECTORY, and RUNTIME_OUTPUT_DIRECTORY. If set these override EXECUTABLE_OUTPUT_PATH and LIBRARY_OUTPUT_PATH for a specific target. They can be used to distribute target files in the build tree with the same granularity that the INSTALL command provides for the install tree. This addresses bug#2240 and bug#4210.
* BUG: Fixed OSX bundles to be built in the directory specified by ↵Brad King2007-03-091-16/+9
| | | | cmTarget::GetDirectory(). This is an incremental step for bug#2240.
* ENH: Do not compute a path name for the import library if there is no import ↵Brad King2007-03-091-3/+9
| | | | library. This simplifies tracking down problems with trying to create import libraries for MODULEs.
* ENH: Added cmMakefileTargetGenerator::GenerateExtraOutput to wrap up ↵Brad King2007-03-093-36/+44
| | | | creation of rules to drive creation of extra outputs generated as side effects of another rule. Reimplemented generation of custom command multiple output rules to use it. Reimplemented soname symlink output dependencies to use it. Now if a symlink is deleted the library will be recreated with the symlink.
* BUG: Need to account for import library directory when constructing the ↵Brad King2007-03-091-1/+1
| | | | clean rule for the import library. This is an incremental fix for bug #4210.
* ENH: Implemented new policy to choose the directory part of the object file ↵Brad King2007-03-091-15/+33
| | | | name. This should keep the names looking as nice and short as possible. This partially addresses bug#4520.
* ENH: Added implib option to cmTarget::GetDirectory to support a separate ↵Brad King2007-03-096-27/+38
| | | | directory containing the import library. This is an incremental step for bug#4210.
* STYLE: Nightly Version updateAndy Cedilnik2007-03-091-1/+1
|
* ENH: Combined cmTarget::GetDirectory and cmTarget::GetOutputDir since they ↵Brad King2007-03-086-15/+19
| | | | are nearly the same. This is another step for bug#2240.
* ENH: Removed unused variables LibraryOutputPath and ExecutableOutputPath. ↵Brad King2007-03-082-47/+0
| | | | Each target is asked for its own output directory. This is a step towards bug#2240.
* COMP: Fixed enumeration-not-used warning in switch.Brad King2007-03-081-13/+18
|
* ENH: Replaced LibraryOutputPath and ExecutableOutputPath variables in ↵Brad King2007-03-089-173/+99
| | | | Makefile and VS generators to instead ask each target for its output path. This significantly reduces total code size and centralizes previously duplicate code. It is also a step towards bug#2240.
* ENH: Ask the target for its own directory in case of bundle instead of ↵Brad King2007-03-081-6/+2
| | | | directly using ExecutableOutputPath.
* BUG: Compute HomeRelativeOutputPath following the rules of ↵Brad King2007-03-081-5/+5
| | | | RelativePathTopBinary by going through the Convert() method. This supports out-of-binary build trees without using relative paths that go outside trees managed by CMake.
* ENH: Enable SubDirSpaces test when building with bootstrapped cmake.Brad King2007-03-081-5/+5
|
* ENH: Fixed recursive make call target escaping for Borland to support ↵Brad King2007-03-084-2/+18
| | | | SubDirSpaces test.
* ENH: Updated GetRecursiveMakeCall to use EscapeForShell instead of MAKEFILE ↵Brad King2007-03-081-11/+9
| | | | conversion. This code is special because it is the only place that a make target name is passed on a command line.
* ENH: Added ConvertToOutputSlashes method to convert slashes with the same ↵Brad King2007-03-082-0/+19
| | | | policy as ConvertToOutputPath but without escaping.
* ENH: Removed useless method ConvertToMakeTarget and all calls to it. It had ↵Brad King2007-03-083-29/+0
| | | | a buggy implementation that caused it to do nothing.
* BUG: Some calls to Convert() were converting for MAKEFILE but then passing ↵Brad King2007-03-084-26/+12
| | | | the output to the build shell. The calls have now been converted to call Convert() with SHELL.
* STYLE: Removed unused calls to Convert.Brad King2007-03-081-6/+0
|
* STYLE: Removing unused methods ConvertToShellPath and EscapeForUnixShell.Brad King2007-03-082-62/+0
|