summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'CPack-cygwinGeneratorDoc'David Cole2012-03-021-0/+33
|\ | | | | | | | | 98d1583 Provide template for CPack Cygwin generator specific variables.
| * Provide template for CPack Cygwin generator specific variables.Eric NOULARD2012-02-251-0/+33
| |
* | Merge topic 'CPack-updateCommonDoc'David Cole2012-03-023-111/+170
|\ \ | | | | | | | | | | | | | | | 6ad0f04 Update CPackConfig template. 94a2693 Review and update CPack variable documentation.
| * | Update CPackConfig template.Eric NOULARD2012-02-251-25/+8
| | | | | | | | | | | | | | | | | | Remove variable documentation from the template in order to avoid multiple location for doc update. Users can now retrieve CPACK_xxx variable documentation from the command line.
| * | Review and update CPack variable documentation.Eric NOULARD2012-02-252-86/+162
| |/ | | | | | | | | | | | | This concerns all variables common to all CPack generators. Variables mainly used and/or set in CPack.cmake are documented therein. C++ built-in variables are documented in cmCPackDocumentVariables.cxx.
* | Merge topic 'CPack-fixCPackDMG-docLayout'David Cole2012-03-021-29/+29
|\ \ | | | | | | | | | | | | b3851f5 Fix CPack Drag and Drop generator documentation layout.
| * | Fix CPack Drag and Drop generator documentation layout.Eric NOULARD2012-02-251-29/+29
| |/
* | Merge topic 'CPack-fixCPackBundleDocLayout'David Cole2012-03-021-15/+14
|\ \ | | | | | | | | | | | | 4849e6a Fix layout of the CPack Bundle documentation
| * | Fix layout of the CPack Bundle documentationEric NOULARD2012-02-251-15/+14
| |/ | | | | | | | | CPACK_BUNDLE_STARTUP_SCRIPT was in fact CPACK_BUNDLE_STARTUP_COMMAND in the C++ code. The doc has been changed accordingly.
* | Merge topic 'fix-macos-findprogramm-crash'David Cole2012-03-021-1/+2
|\ \ | | | | | | | | | | | | 0d2f5c8 Fix crash if app bundle executeable couldn't be found
| * | Fix crash if app bundle executeable couldn't be foundBjoern Ricks2012-02-251-1/+2
| |/ | | | | | | | | | | | | | | Fix a crash on Mac OS X if a programm can't be found as an application bundle. CFRelease MUST NOT be called on a NULL value. See https://developer.apple.com/library/mac/documentation/CoreFOundation/Reference/CFTypeRef/Reference/reference.html#//apple_ref/doc/c_ref/CFRelease
* | Merge topic 'fix-findhspell-version'David Cole2012-03-021-1/+4
|\ \ | | | | | | | | | | | | 213eb6e FindHSPELL: set HSPELL_VERSION_STRING
| * | FindHSPELL: set HSPELL_VERSION_STRINGRolf Eike Beer2012-02-251-1/+4
| | | | | | | | | | | | This variable was documented, but never set.
* | | Merge topic 'remove-old-manpage'David Cole2012-03-021-112/+0
|\ \ \ | | | | | | | | | | | | | | | | b2cbd75 Remove unused file cmake.1
| * | | Remove unused file cmake.1Yury G. Kudryashov2012-02-241-112/+0
| | | | | | | | | | | | | | | | This old man page has long been replaced by generated documentation.
* | | | Merge topic 'improve-findopenscenegraph'David Cole2012-03-021-5/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | ffdaa47 FindOpenSceneGraph: give every message() with an explicit level
| * | | | FindOpenSceneGraph: give every message() with an explicit levelRolf Eike Beer2012-02-241-5/+5
| | |/ / | |/| |
* | | | Merge topic 'cmake-mode-case'David Cole2012-03-021-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | ab9824e cmake-mode.el: Make indentation case-insensitive (#12995)
| * | | | cmake-mode.el: Make indentation case-insensitive (#12995)Christopher Sean Morrison2012-02-241-2/+2
| | |/ / | |/| | | | | | | | | | | | | | | | | | Convert the block open and close matching expressions to be explicitly insensitive to case. This way it will not matter whether Emacs is sensitive to case when evaluating 'string-match'.
* | | | Merge topic 'improve-generateexportheader'David Cole2012-03-021-35/+9
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | c28e276 GenerateExportHeader: improve compiler identification 4412fc0 GenerateExportHeader: remove unneeded code
| * | | | GenerateExportHeader: improve compiler identificationRolf Eike Beer2012-02-241-28/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use CMAKE_<LANG>_COMPILER_VERSION instead of calling the compiler. This macro predates those useful variables. This also fixes the issue that g++ version detection was not working if C language was not enabled.
| * | | | GenerateExportHeader: remove unneeded codeRolf Eike Beer2012-02-241-7/+0
| | |/ / | |/| | | | | | | | | | | | | | These expressions check for command line arguments unsupported by the compiler. We don't pass any custom flags here anyway so this isn't needed.
* | | | Merge topic 'icc-compiler-flags'David Cole2012-03-022-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | f6ecb90 Check{C,CXX}CompilerFlag: detect ICC error messages
| * | | | Check{C,CXX}CompilerFlag: detect ICC error messagesRolf Eike Beer2012-02-232-0/+2
| | | | | | | | | | | | | | | | | | | | Patch provided by Christopher Sean Morrison.
* | | | | Merge topic 'improve-findpythonlibs'David Cole2012-03-022-8/+66
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 53d02ea FindPythonLibs: stop scanning when libraries are found 91d5a2a FindPythonLibs: put debug libraries into PYTHON_LIBRARIES c9c1a17 FindPythonLibs: get the exact version of the found library (#3080) f772378 FindPythonLibs: make the version selection work as for PythonInterp bbddaee FindPython{Interp,Libs}: document Python_ADDITIONAL_VERSIONS as input
| * | | | | FindPythonLibs: stop scanning when libraries are foundRolf Eike Beer2012-02-231-0/+4
| | | | | |
| * | | | | FindPythonLibs: put debug libraries into PYTHON_LIBRARIESRolf Eike Beer2012-02-231-3/+11
| | | | | |
| * | | | | FindPythonLibs: get the exact version of the found library (#3080)Rolf Eike Beer2012-02-221-2/+12
| | | | | |
| * | | | | FindPythonLibs: make the version selection work as for PythonInterpRolf Eike Beer2012-02-221-2/+33
| | | | | |
| * | | | | FindPython{Interp,Libs}: document Python_ADDITIONAL_VERSIONS as inputRolf Eike Beer2012-02-222-2/+7
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | The current documentation could be read as if that variable is output from the module, which is nonsense.
* | | | | Merge topic 'cleanup-useswig'David Cole2012-03-021-8/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | aca1121 UseSWIG: clean up string compares
| * | | | | UseSWIG: clean up string comparesRolf Eike Beer2012-02-231-8/+5
| | |/ / / | |/| | |
* | | | | Merge topic 'simplify-findopenmp'David Cole2012-03-021-10/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 0110262 FindOpenMP: simplify check for enabled languages
| * | | | | FindOpenMP: simplify check for enabled languagesRolf Eike Beer2012-02-221-10/+2
| | |/ / / | |/| | |
* | | | | Merge topic 'fix-generate_export_header-docs'David Cole2012-03-021-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 40efa4d Fix documented function signature to match reality.
| * | | | | Fix documented function signature to match reality.Stephen Kelly2012-02-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | The function description is already correct.
* | | | | | Merge topic 'add-Embarcadero-support'David Cole2012-03-027-29/+53
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bdbbf76 Recognize Embarcadero compiler (#12604) 3f78ced Rename Modules/Platform/Windows-{Borland => Embarcadero}.cmake
| * | | | | | Recognize Embarcadero compiler (#12604)Brad King2012-02-207-26/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Borland compiler was re-branded as CodeGear during 2007-2009 and since 2009 is the Embarcadero compiler. They offer predefined macros: http://docwiki.embarcadero.com/RADStudio/en/Predefined_Macros and distinguish themselves by __CODEGEARC__ and __CODEGEARC_VERSION__. Version 6.30 (C++Builder XE) changed the meaning of some flags: http://docwiki.embarcadero.com/RADStudio/en/C%2B%2B_Compiler_Option_Changes_for_XE Teach Embarcadero compiler information files to generate build rules with flags matching the compiler version. Leave the flags unchanged for old Borland versions. Always set the BORLAND toolchain indicator for compatibility with existing projects that test it. Also set the EMBARCADERO indicator for newer toolchains.
| * | | | | | Rename Modules/Platform/Windows-{Borland => Embarcadero}.cmakeBrad King2012-02-173-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Borland compiler is now the Embarcadero compiler. Rename the shared platform information file to reflect this. This does not change the interface, as old versions are still "Borland", but will allow new versions released by Embarcadero to be supported cleanly.
* | | | | | | KWSys Nightly Date StampKWSys Robot2012-03-021-1/+1
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2012-03-011-2/+2
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2012-02-291-1/+1
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2012-02-281-1/+1
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2012-02-271-1/+1
| | | | | | |
* | | | | | | KWSys Nightly Date StampKWSys Robot2012-02-261-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2012-02-251-1/+1
| |_|_|_|/ |/| | | |
* | | | | KWSys Nightly Date StampKWSys Robot2012-02-241-1/+1
| |_|_|/ |/| | |
* | | | KWSys Nightly Date StampKWSys Robot2012-02-231-1/+1
| |_|/ |/| |
* | | KWSys Nightly Date StampKWSys Robot2012-02-221-1/+1
| |/ |/|
* | Merge topic 'HandleTargetsInCMakeRequiredLibraries'David Cole2012-02-2117-67/+257
|\ \ | | | | | | | | | | | | | | | | | | | | | 35c48e1 Check*.cmake: Expand imported targets in CMAKE_REQUIRED_LIBRARIES 61cb4ea bootstrap: move while() and endwhile() into the bootstrap build c9f2886 -don't pull in CheckTypeSize.cmake from the cmake which is being built 628f365 -remove trailing whitespace