summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: fix for Windows VistaSebastien Barre2008-10-161-7/+22
|
* ENH: better way to find uic and moc.Clinton Stimpson2008-10-151-23/+14
|
* ENH: run the right cmakeBill Hoffman2008-10-151-1/+1
|
* ENH: run the right cmakeBill Hoffman2008-10-151-2/+4
|
* ENH: fix bootstrap test and warningBill Hoffman2008-10-151-2/+8
|
* BUG: 4244, add a --build option to cmake that can build projects configured ↵Bill Hoffman2008-10-158-13/+187
| | | | by CMake
* ENH: remove extra setBill Hoffman2008-10-151-1/+0
|
* BUG: Fix color check for dependency scanningBrad King2008-10-152-2/+8
| | | | | Generation of color rules for dependency scanning messages did not account for disabling color at generation time. See issue #7814.
* ENH: Support object lists longer than 128K on MSVCBrad King2008-10-151-8/+29
| | | | | | We use response files to list object files for the MSVC linker. The linker complains if any response file is greater than 128K, so we split the object file lists into multiple response files.
* ENH: Factor out listing of objects on command lineBrad King2008-10-154-55/+48
| | | | | | Previously generation of object file lists for linker and cleaning command lines was duplicated for library and executable target generators. This combines the implementations.
* STYLE: Remove computed but unused variable.Brad King2008-10-152-6/+0
| | | | | An old list of object files for cleaning seems to have been left behind. This removes it.
* BUG: Use the DESTDIR prefix when creating the directory in CPack when ↵David Cole2008-10-151-8/+24
| | | | CPACK_SET_DESTDIR is ON. Thanks to Petri Hodju for reporting this regression to the CMake mailing list: http://www.cmake.org/pipermail/cmake/2008-October/024563.html.
* STYLE: Nightly Date StampBrad King2008-10-151-1/+1
|
* ENH: fix problem where rc language recursively included itself because ↵Bill Hoffman2008-10-147-7/+9
| | | | CMAKE_BASE_NAME was used from c compiler, do the same fix for other uses of CMAKE_BASE_NAME
* ENH: revert last change, as it fails testsBill Hoffman2008-10-141-7/+0
|
* ENH: better error message for mis-configured nmake environmentBill Hoffman2008-10-141-1/+8
|
* ENH: better error message for mis-configured nmake environmentBill Hoffman2008-10-142-1/+17
|
* ENH: Clarify PATH_SUFFIXES documentationBrad King2008-10-141-2/+4
| | | | | | This clarifies documentation of the find_* commands' PATH_SUFFIXES option. The option adds paths with the suffixes but does not remove the paths without the suffixes.
* STYLE: Nightly Date StampBrad King2008-10-141-1/+1
|
* ENH: When changing the qmake pointed to, re-find all of Qt's includes, ↵Clinton Stimpson2008-10-141-294/+117
| | | | | | libraries, etc... This makes it much easier to switch between Qt versions.
* BUG: Fix find of dbus dependency in Qt 4.4Clinton Stimpson2008-10-131-3/+3
|
* BUG: Fix find_* search order with path suffixesBrad King2008-10-131-7/+1
| | | | | | | In cmFindBase we were searching all path suffixes appended to all paths before considering the paths without any suffixes. Instead we should consider each path with and without suffixes before moving to the next path. See issue #7783.
* STYLE: Nightly Date StampBrad King2008-10-131-1/+1
|
* STYLE: Nightly Date StampBrad King2008-10-121-1/+1
|
* COMP: Fix assignment inside conditionBrad King2008-10-111-2/+2
|
* BUG: Make sure context info is always initializedBrad King2008-10-111-0/+1
| | | | | | This adds a missing default constructor to cmListFileContext that makes sure the line number is initialized to zero. A zero line number will indicate a generated context.
* STYLE: Nightly Date StampBrad King2008-10-111-1/+1
|
* BUG: Fix for issue #5193. Base result of FindMFC.cmake mostly on a ↵David Cole2008-10-101-12/+40
| | | | TRY_COMPILE result. Gives accurate answer about whether MFC is available.
* BUG: Fix issue #7800. Enable CPack to find the NSIS installer on Windows 2000.David Cole2008-10-101-7/+11
|
* ENH: Improve generated documentation formattingBrad King2008-10-1010-27/+163
| | | | | | | | | | | | Applying patch provided in issue #7797. Fixes to man-pages: - Character '-' must be espaced as '\-' - Surround preformatted text with '.nf' and '.fi' to adjust filling - Give every page a NAME section for indexing by mandb - Pass the man page filename without extension to .TH in its header Also added a title to the HTML header.
* BUG: Fix help type for filenames with many dotsBrad King2008-10-101-1/+1
| | | | | The help page type should be determined using only the extension after the last dot. See issue #7797.
* STYLE: Fix typo in GetFilenameLastExtension docsBrad King2008-10-101-1/+1
| | | | See issue #7797.
* BUG: fix for 5071, report error if output file can not be openedBill Hoffman2008-10-101-0/+7
|
* BUG: fix for 3778, better docs for -EBill Hoffman2008-10-101-1/+5
|
* ENH: play it safe and restore the value of LC_MESSAGESBill Hoffman2008-10-101-1/+17
|
* ENH: make sure LC_MESSAGES is en_EN so that we can parse the output of svn ↵Bill Hoffman2008-10-101-0/+8
| | | | and cvs
* STYLE: Fix line-too-longBrad King2008-10-101-1/+2
|
* STYLE: Nightly Date StampBrad King2008-10-101-1/+1
|
* BUG: Avoid boost versions less than requiredBrad King2008-10-091-14/+31
| | | | | | Construction of a list of candidate versions used to produce search paths now discards versions less than requested by the user. See issue #7783.
* ENH: Fix optional use of relative paths.Brad King2008-10-097-55/+164
| | | | | | | These changes refactor cmLocalGenerator methods Convert and ConvertToOutputForExisting to support references inside the build tree using relative paths. After this commit, all tests pass with Makefile generators when relative paths are enabled by default. See issue #7779.
* ENH: Simplify makefile ref to interactive editorBrad King2008-10-091-3/+3
| | | | | | The CMAKE_EDIT_COMMAND make variable need not be constructed with ConvertToOutputForExisting. The CMAKE_COMMAND variable works fine without it.
* ENH: Simplify framework -F flag generationBrad King2008-10-092-4/+8
| | | | | This removes an unnecessary use of ConvertToOutputForExisting which is needed only on Windows to consider short-pathing.
* BUG: Pass definitions to rc with MakefilesBrad King2008-10-091-1/+1
| | | | | | The build rule to run the resource compiler on Windows with a Makefiles generator should include the placeholder to add the definition flags. See issue #7769.
* BUG: Finish fix to old DEFINITIONS propertyBrad King2008-10-091-0/+2
| | | | | | | The cmMakefile::DefineFlagsOrig ivar was created to help preserve the old DEFINITIONS property behavior now that definitions are moved from DefineFlags to the COMPILE_DEFINITIONS directory property. This fixes propagation of the original value into subdirectories.
* BUG: fix for 5218 Error message pattern match for VS8Bill Hoffman2008-10-091-1/+2
|
* BUG: fix for 4026, display a message if ccmake has errorsBill Hoffman2008-10-091-4/+5
|
* ENH: Put custom target sources in Xcode projectsBrad King2008-10-092-24/+62
| | | | | Source files in custom targets are now placed in the Xcode project for convenient editing. See issue #5848.
* ENH: Allow custom sources in custom targetsBrad King2008-10-093-5/+26
| | | | | | | This adds a SOURCES option to ADD_CUSTOM_TARGET, enabling users to specify extra sources for inclusion in the target. Such sources may not build, but will show up in the IDE project files for convenient editing. See issue #5848.
* ENH: Return utility target after creationBrad King2008-10-092-12/+14
| | | | | | After creating a utility target with AddUtilityCommand, return a pointer to the cmTarget instance so the caller may further modify the target as needed.
* STYLE: Nightly Date StampBrad King2008-10-091-1/+1
|