summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Define kwsys_ios_binary macro for std::ios::binaryBrad King2009-08-314-0/+37
| | | | | | | | The 'binary' openmode does not exist on all compilers. We define macro <kwsys>_ios_binary, where <kwsys> is the KWSys namespace, to refer to std::ios::binary if it exists and 0 otherwise. Sample usage: kwsys_ios::ifstream fin(fn, kwsys_ios::ios::in | kwsys_ios_binary);
* Fixed ctest_memcheck docs (http://www.cmake.org/Bug/view.php?id=9242)Zach Mullen2009-08-311-4/+14
|
* Fixed Dart time recording for ctestZach Mullen2009-08-311-0/+6
|
* Fixed conversion warning on 64 bit machinesZach Mullen2009-08-314-320/+6
|
* KWSys Nightly Date StampKWSys Robot2009-08-311-1/+1
|
* Fixed line length issueZach Mullen2009-08-301-1/+2
|
* KWSys Nightly Date StampKWSys Robot2009-08-301-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-291-1/+1
|
* MemCheck should now work again in ctestZach Mullen2009-08-287-65/+67
|
* Replaced std::stringstream with cmOStringStreamZach Mullen2009-08-281-1/+1
|
* Added ctest -N test. Fixed ctest working directory bug. MemCheck fix ↵Zach Mullen2009-08-287-153/+114
| | | | coming soon...
* KWSys Nightly Date StampKWSys Robot2009-08-281-1/+1
|
* Fixed ctest -N segfault issue. Further refactored ctest. Enabled failover ↵Zach Mullen2009-08-2710-432/+251
| | | | for ctest
* KWSys Nightly Date StampKWSys Robot2009-08-271-1/+1
|
* ENH: refactored ctest. All testing is now parallel. If no -j option is ↵Zach Mullen2009-08-268-506/+329
| | | | specified, defaults to a MP level of 1 (non parallel)
* KWSys Nightly Date StampKWSys Robot2009-08-261-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-251-1/+1
|
* Factor implicit link info addition into methodsBrad King2009-08-242-28/+43
| | | | | | | In cmComputeLinkInformation::Compute we add implicit link information from languages other than the linker language to the end of the link line. This factors out that code into separate methods to improve readability and organization.
* Create GLOBAL_DEPENDS_NO_CYCLES propertyBrad King2009-08-243-2/+29
| | | | | This global property disallows cycles in the inter-target dependency graph even among STATIC libraries. See issue #9444.
* KWSys Nightly Date StampKWSys Robot2009-08-241-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-231-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-221-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-211-1/+1
|
* Document CMAKE_<LANG>_COMPILER_LOADED variableBrad King2009-08-201-2/+7
|
* Fixed line length over 80Zach Mullen2009-08-201-5/+6
|
* KWSys Nightly Date StampKWSys Robot2009-08-201-1/+1
|
* Fixed overwriting of a previous change setZach Mullen2009-08-193-2/+53
|
* ENH: Refactored CTest test execution code into an objectZach Mullen2009-08-197-65/+652
|
* KWSys Nightly Date StampKWSys Robot2009-08-191-1/+1
|
* Add test times to log file as well as the stdout.Bill Hoffman2009-08-181-2/+14
|
* If labels are found on the tests, then print a time summary for all the ↵Bill Hoffman2009-08-182-1/+49
| | | | tests run with each label.
* KWSys Nightly Date StampKWSys Robot2009-08-181-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-171-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-161-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-151-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-141-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-131-1/+1
|
* Fix classification of externals in svn statusBrad King2009-08-121-2/+2
| | | | | | | CTest runs 'svn status' to identify modified and conflicting files in the working directory. This commit fixes the interpretation of the 'X' status, which corresponds to svn eXternals. This status should be ignored rather than treated as a local modification.
* KWSys Nightly Date StampKWSys Robot2009-08-121-1/+1
|
* Output total time when using -j NBill Hoffman2009-08-123-2/+3
|
* Fix failing test on release build for VS 10 cmSystemTools::GetLineFromStream ↵Bill Hoffman2009-08-111-1/+1
| | | | crashes if the stream is not open in that case.
* Introduce "generator expressions" to add_test()Brad King2009-08-115-2/+283
| | | | | | | | This introduces a new syntax called "generator expressions" to the test COMMAND option of the add_test(NAME) command mode. These expressions have a syntax like $<TARGET_FILE:mytarget> and are evaluated during build system generation. This syntax allows per-configuration target output files to be referenced in test commands and arguments.
* Create cmTarget DLL query methodsBrad King2009-08-112-3/+15
| | | | | | | We creates methods IsDLLPlatform() and HasImportLibrary(). The former returns true on Windows. The latter returns whether the target has a DLL import library. It is true on Windows for shared libraries and executables with exports.
* Record backtrace for every add_test commandBrad King2009-08-113-17/+21
| | | | | | We teach cmTest to hold a backtrace for the add_test command that created it. This will be used later to report context for errors at generate time.
* KWSys Nightly Date StampKWSys Robot2009-08-111-1/+1
|
* ENH: Patch from Alexander Neundorf to remove "KDevelop3" from list of ↵Clinton Stimpson2009-08-101-0/+9
| | | | generators. "KDevelop3 - Unix Makefiles" should be used instead.
* ENH: Allow edit on single click. Fixes #9393. Also fix row heights to be ↵Clinton Stimpson2009-08-102-4/+18
| | | | consistent.
* Cleanup test property script code generationBrad King2009-08-101-30/+4
| | | | | | | We teach cmTestGenerator::GenerateScriptConfigs to use the general cmLocalGenerator::EscapeForCMake method to write escaped test property values into test scripts. This eliminates the previous hand-coded escaping implementation.
* KWSys Nightly Date StampKWSys Robot2009-08-101-1/+1
|
* KWSys Nightly Date StampKWSys Robot2009-08-091-1/+1
|