summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* KWSys Nightly Date StampKWSys Robot2010-02-151-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-02-141-1/+1
|
* -fix bug for Eclipse projects where targets which are in a subdir which has ↵Alexander Neundorf2010-02-131-19/+19
| | | | | | | | | | | | | | the same name as the project (... and so the linked resource) could not be built http://public.kitware.com/Bug/view.php?id=9978 Now instead of one linked resource for each project() just one linked resource to the top level source directory is created. This should really avoid this type of name clashes. And to me it looks also much less confusing. Hopefully the name "[Source directory]" containing a space and square brackets doesn't lead to problems somewhere. Here it works. Alex
* KWSys Nightly Date StampKWSys Robot2010-02-131-1/+1
|
* Preemptively fix line too long problem before tomorrow's dashboard has a ↵David Cole2010-02-121-3/+4
| | | | chance to complain about it.
* Fix for issue #9125 - invent CMAKE_XCODE_ATTRIBUTE_* variable mechanism. If ↵David Cole2010-02-121-0/+15
| | | | there are variables that begin with CMAKE_XCODE_ATTRIBUTE_ then add corresponding attributes into the generated Xcode project file.
* Fix KWSYS_PLATFORM_INFO_TEST when user removes treeBrad King2010-02-121-1/+1
| | | | | | | | | | In commit 'Create KWSYS_PLATFORM_INFO_TEST macro' (2009-11-20) we implemented the macro to use a cache entry to avoid re-running the try_compile(). However, the output copied from the try_compile is needed on every configure. If the user wipes out the build tree but not the cache file then the try_compile() will not re-run to recreate the needed file. We address the problem by teaching the macro to run the try_compile() whenever its output file does not exist.
* Fix rule hash persistence file generationBrad King2010-02-122-4/+16
| | | | | | | | | | | | | | | | | | | | | We store custom command rule hashes in CMakeFiles/CMakeRuleHashes.txt persistently across CMake runs. When the rule hash changes we delete the custom command output file and write a new hash into the persistence file. This functionality was first added by the commit 'Introduce "rule hashes" to help rebuild files when rules change.' (2008-06-02). However, the implementation in cmGlobalGenerator::CheckRuleHashes kept the file open for read when attempting to rewrite a new file. On Windows filesystems this prevented the new version of the file from being written! This caused the first set of rule hashes to be used forever within a build tree, meaning that all custom commands whose rules changed would be rebuilt every time CMake regenerated the build tree. In this commit we address the problem by splitting the read and write operations into separate methods. This ensures that the input stream is closed before the output stream opens the file.
* KWSys Nightly Date StampKWSys Robot2010-02-121-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-02-111-1/+1
|
* Fix for fix for issue #2336 - do not specify CMAKE_BUILD_TYPE when the ctest ↵David Cole2010-02-101-1/+2
| | | | -C configuration type string is empty.
* KWSys Nightly Date StampKWSys Robot2010-02-101-1/+1
|
* cmCTestGIT: Refresh index for local modificationsBrad King2010-02-091-2/+8
| | | | | | | | We use 'git diff-index' to detect local modifications after pull. On some filesystems the work tree timestamps of a few files may be dated after the index, making them appear as locally modified. We address the problem by using 'git update-index --refresh' to refresh the index and avoid false local modifications.
* cmCTestBZR: Strip trailing slashes from pathsBrad King2010-02-091-2/+6
| | | | | | | Our internal path processing methods assume no trailing slashes, but bzr adds trailing slashes to updated directories. This can lead to empty entries in Update.xml files. We address the problem by stripping the slashes as soon as they are parsed.
* KWSys Nightly Date StampKWSys Robot2010-02-091-1/+1
|
* Moved call to cache CDash version information to cmCTest::initialize. Also ↵Zach Mullen2010-02-081-4/+6
| | | | added a 3 second timeout when requesting the version from the server. Added an option to the CTestConfiguration that will be used to determine whether to query the version information at all. (Behavior for this setting is not yet defined.) Updated CMake's local CDash version setting to 1.6.
* KWSys Nightly Date StampKWSys Robot2010-02-081-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-02-071-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-02-061-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-02-051-1/+1
|
* Fix HPUX issue with test, by doing the query to cdash for its version before ↵Bill Hoffman2010-02-051-1/+3
| | | | any test is started.
* Support for relative paths to executables in MemCheck tests. Also fixed a ↵Zach Mullen2010-02-041-1/+3
| | | | bug causing memcheck args to be overwritten repetitively.
* KWSys Nightly Date StampKWSys Robot2010-02-041-1/+1
|
* Re-enabled Scheduler test and fixed the underlying problem.Zach Mullen2010-02-031-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-02-031-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-02-021-1/+1
|
* Fix line length style issue.David Cole2010-02-021-1/+2
|
* KWSys Nightly Date StampKWSys Robot2010-02-011-2/+2
|
* KWSys Nightly Date StampKWSys Robot2010-01-311-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-301-1/+1
|
* Fix issue #10155 - default value of CMAKE_OSX_DEPLOYMENT_TARGET should ↵David Cole2010-01-291-3/+7
| | | | always be the empty string. When the value of CMAKE_OSX_DEPLOYMENT_TARGET is the empty string, the -mmacosx-version-min flag should not show up on the compiler command line. The logic for selecting default value of CMAKE_OSX_SYSROOT is orthogonal to and independent of the value of the deployment target. The default value for CMAKE_OSX_SYSROOT is the SDK that corresponds to the current version of Mac OSX on which cmake is running.
* KWSys Nightly Date StampKWSys Robot2010-01-291-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-281-1/+1
|
* KWSys: Remove $Id$ from MD5.cBrad King2010-01-271-1/+0
| | | | | This CVS keyword was copied into the file with the rest of the implementation. It has no meaning outside its original project tree.
* KWSys Nightly Date StampKWSys Robot2010-01-271-1/+1
|
* COMP: remove exporting String as VS10 attempts to export its parents ↵Dave Partyka2010-01-261-1/+1
| | | | (basic_string) which causes all kinds of multiply defined symbols at link time.
* KWSys Nightly Date StampKWSys Robot2010-01-261-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-251-1/+1
|
* -make paths with spaces work in the CodeBlocks generator with MinGW (#10014)Alexander Neundorf2010-01-241-6/+10
| | | | Alex
* KWSys Nightly Date StampKWSys Robot2010-01-241-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-231-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-221-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-211-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-201-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-191-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-181-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-171-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-161-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-151-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-01-141-1/+1
|