summaryrefslogtreecommitdiffstats
path: root/Tests/OutOfSource/OutOfSourceSubdir
Commit message (Collapse)AuthorAgeFilesLines
* Visual Studio 10 has the same bug as 8 so make the path shorterBill Hoffman2009-09-231-2/+2
|
* ENH: Allow custom limit on object file path lengthBrad King2008-08-211-2/+5
| | | | | | | | Some native build tools, particularly those for cross compiling, may have a limit on the length of the full path to an object file name that is lower than the platform otherwise supports. This change allows the limit to be set by the project toolchain file through the variable CMAKE_OBJECT_PATH_MAX.
* STYLE: remove debug outputAlexander Neundorf2007-07-161-1/+0
|
* BUG: GET_DIRECTORY_PROPERTY(INCLUDE_DIRECTORIES|LINK_DIRECTORIES) wasn'tAlexander Neundorf2007-07-161-0/+6
| | | | | | | | | | | | | | working, for both the result was always empty, since cmMakefile::GetProperty() recognized it as a special property, constructed a correct return value and called cmMakefile::SetProperty() with this list of directories, which then didn't actually set the property, but applied it to the internal vector of include/link directories. The following getPropertyValue in cmMakefile::GetProperty() then still didn't find it and returned nothing. Now for all special property the static string output is used and its content is returned. I'm not sure it is the right way to fix this problem but at least it seems to work and it fixes the Paraview3 build Alex
* BUG: Disable deep-source test on Watcom until it can be fixed. This is a ↵Brad King2007-03-212-7/+11
| | | | new feature for other generators anyway.
* BUG: Reduce long source file name length for WMake.Brad King2007-03-201-0/+7
|
* BUG: Work around VS8 conversion to a relative path for the long source name. ↵Brad King2007-03-201-2/+14
| | | | It takes the nice full path we give it, converts to relative, and then repacks relative on top of the build directory resulting in a path longer than its own maxpath even though the original path given was short enough. Even VS6 dealt with it better.
* ENH: Added computation of object file names that are almost always short ↵Brad King2007-03-163-1/+25
| | | | 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: Fixed out-of-source subdirectories to work when they are also ↵Brad King2006-10-102-1/+6
| | | | out-of-binary. Updated the OutOfSource test to test this feature.
* ENH: Adding test for multiple source files with the same name but different ↵Brad King2006-07-072-2/+8
| | | | full paths.
* ENH: test get directory properties ability to get props from subdirsKen Martin2005-09-132-1/+14
|
* ENH: add missing filesBill Hoffman2005-07-142-0/+17
|
* FIX: fix bug 2043 borland compiler and dll problem and add a test for itBill Hoffman2005-07-142-0/+9
|
* ENH: also test for correct Proj dir settingsKen Martin2005-04-121-1/+4
|
* ENH: added new test for out of dir source treesKen Martin2005-03-142-0/+5