summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* ENH: tiny performance improvementKen Martin2008-03-201-1/+2
|
* ENH: small simple projects do not need to specify cmake minimum requiredKen Martin2008-03-201-1/+35
|
* ENH: Clarify end of (dev) warnings to explicitly state they are meant for ↵Brad King2008-03-201-1/+2
| | | | project developers.
* STYLE: Nightly Date StampBrad King2008-03-201-1/+1
|
* BUG: Change generated try-compile projects to use cmake_minimum_required ↵Brad King2008-03-191-1/+1
| | | | instead of cmake_policy to set the version now that CMP0000 requires it.
* ENH: Improve warning about specifying a cmake versionBrad King2008-03-192-62/+63
| | | | | | | | | | - Update policy CMP0000 to require use of the command cmake_minimum_required and not cmake_policy so there is only one way to avoid it. - Explicitly specify the line users should add. - Reference policy CMP0000 only at the end. - Fix policy CMP0000 documentation to not suggest use of the cmake_policy command.
* ENH: Clarify warning for policy CMP0003 further.Brad King2008-03-191-8/+11
|
* BUG: Missing a linker crashed error matching string.David Cole2008-03-191-0/+1
|
* ENH: do not warn about frameworks as they are not affected by -L anywayBill Hoffman2008-03-191-2/+5
|
* STYLE: Nightly Date StampBrad King2008-03-191-1/+1
|
* ENH: try to reduce the number of CMP0003 warnings that people see. Only ↵Bill Hoffman2008-03-182-9/+25
| | | | report them for unique sets of libraries with no full path. Also add a message explaining the course of action that should be taken
* ENH: exclude borland make as wellBill Hoffman2008-03-181-13/+14
|
* ENH: turn off extra rules for nmake and wmakeBill Hoffman2008-03-181-12/+16
|
* ENH: try to improve make speed by getting rid of some implicit rules that ↵Bill Hoffman2008-03-181-0/+12
| | | | were still around.
* STYLE: Nightly Date StampBrad King2008-03-181-1/+1
|
* ENH: Improve documentation of cmake_policy command.Brad King2008-03-181-8/+28
| | | | | | | | - Add a paragraph introducing the policy mechanism - Explicitly introduce the CMP<NNNN>, OLD, and NEW notation - Note that setting policies by CMake version is preferred - Fix SET signature to use CMP<NNNN> notation - Add more details about the policy stack
* ENH: Set CMake Policy CMP0003 to NEW behavior to build without warnings with ↵Brad King2008-03-171-0/+6
| | | | the upcoming CMake 2.6 release.
* STYLE: Nightly Date StampBrad King2008-03-171-1/+1
|
* STYLE: Nightly Date StampBrad King2008-03-161-1/+1
|
* COMP: Fix unreachable code warning for break after return in switch in ↵Brad King2008-03-151-2/+0
| | | | CMP0003 impl.
* STYLE: Fix line-too-long for new INTERNAL_ERROR messages.Brad King2008-03-152-10/+9
|
* STYLE: Nightly Date StampBrad King2008-03-151-1/+1
|
* STYLE: yeah yeah.Sebastien Barre2008-03-141-2/+4
|
* ENH: Prevent loading standard qt plugins at runtime (which we dont' care ↵Clinton Stimpson2008-03-141-0/+7
| | | | | | about). This can cause problems if a Mac bundle doesn't contain the plugins.
* ENH: Improve CMP0003 to provide more compatibilityBrad King2008-03-141-3/+17
| | | | | | | - Targets built in the tree now add compatibility paths too - The warning message's first list includes at most one item for each unique compatibility path - Clarified error message further
* BUG: Fix impl of CMP0005 regex to match value-less definitions.Brad King2008-03-131-1/+1
|
* ENH: Clarify documentation of policy CMP0000 and its relationship with ↵Brad King2008-03-132-9/+16
| | | | cmake_minimum_required.
* ENH: Add policy CMP0005 to decide whether add_definitions should escape defs.Brad King2008-03-133-5/+55
|
* ENH: Add cmake_policy push/version/pop to import/export files.Brad King2008-03-131-0/+7
|
* ENH: Add policy CMP_0004 to require library names to have no leading or ↵Brad King2008-03-136-11/+68
| | | | trailing whitespace. Replace previous check of CMAKE_BACKWARDS_COMPATIBILITY against version 2.4 with the policy.
* ENH: Convert CMAKE_LINK_OLD_PATHS to policy CMP0003.Brad King2008-03-137-38/+202
| | | | | | | | | - Policy is WARN by default so projects will build as they did in 2.4 without user intervention - Remove CMAKE_LINK_OLD_PATHS variable since it was never in a release and the policy supercedes it - Report target creation backtrace in warning message since policy should be set by that point
* ENH: make menu item match -Wno-dev command lineBill Hoffman2008-03-131-1/+1
|
* ENH: Preserve white spaces when printing messages.Clinton Stimpson2008-03-131-0/+1
|
* ENH: move the clear to before things are added to the mapsBill Hoffman2008-03-131-2/+2
|
* ENH: Make (dev) warnings show note about -Wno-dev option. Fix -Wdev and ↵Brad King2008-03-131-0/+16
| | | | -Wno-dev options to not be mistaken for the source directory specification.
* ENH: Reduce whitespace in policy warning/error messages.Brad King2008-03-131-2/+2
|
* ENH: Improve error message when invalid policy is given.Brad King2008-03-131-4/+5
|
* ENH: Simplify error message for invalid set(... CACHE) calls to make it look ↵Brad King2008-03-131-11/+1
| | | | nicer with new message format.
* ENH: Improve new error/warning message generationBrad King2008-03-138-91/+155
| | | | | | | | | | - Add cmListFileBacktrace to record stack traces - Move main IssueMessage method to the cmake class instance (make the backtrace an explicit argument) - Change cmMakefile::IssueMessage to construct a backtrace and call the cmake instance version - Record a backtrace at the point a target is created (useful later for messages issued by generators)
* ENH: change CMP_ to CMPKen Martin2008-03-137-21/+21
|
* BUG: the directory the FILE DOWNLOAD command is writing to might not exist.Sebastien Barre2008-03-131-0/+11
|
* STYLE: Nightly Date StampBrad King2008-03-131-1/+1
|
* ENH: fix crash in cpack when CPACK_CYGWIN_PATCH_NUMBER not specifiedBill Hoffman2008-03-133-4/+26
|
* ENH: remove abort calls and replace with an IssueMessage INTERANL_ERROR, ↵Bill Hoffman2008-03-135-9/+52
| | | | better to not crash on the end user.
* ENH: make sure properties are re-set on each configureBill Hoffman2008-03-122-9/+18
|
* ENH: add REMOVE_DUPLICATES subcommand to LIST command (and test). Remove ↵Sebastien Barre2008-03-122-0/+69
| | | | duplicates from a list (keep the ordering)
* BUG: fix some bad changes in progress calcKen Martin2008-03-121-6/+2
|
* STYLE: fix line lenBill Hoffman2008-03-121-2/+4
|
* STYLE: Nightly Date StampBrad King2008-03-121-1/+1
|
* ENH: fix dumb MS warning about BOOL and performance with more codeBill Hoffman2008-03-121-1/+8
|