Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | nmake/jom: Only warn about bad VS environment if compiler not found. | James Johnston | 2015-08-06 | 1 | -12/+16 |
| | | | | | | | nmake and jom generators no longer warn about missing INCLUDE/LIB environment variables unless the C/CXX compiler cannot be found. This is useful if the user does not want to use these generators with the Visual C++ compiler, or they do not want to enable any language. | ||||
* | cmState: Host some state from the cmGlobalGenerator. | Stephen Kelly | 2015-05-27 | 1 | -2/+2 |
| | |||||
* | cmGlobalGenerator: Require a cmake instance in ctor. | Stephen Kelly | 2015-05-27 | 1 | -1/+2 |
| | | | | It is required anyway, so this makes it explicit. | ||||
* | Remove obsolete overrides of CreateLocalGenerator. | Stephen Kelly | 2015-05-18 | 1 | -9/+0 |
| | | | | The cmGlobalMakefileGenerator3 has an identical implementation. | ||||
* | cmGlobalGenerator: Host the MakeSilentFlag. | Stephen Kelly | 2015-05-18 | 1 | -1/+1 |
| | |||||
* | cmLocalGenerator: Remove unused IgnoreLibPrefix. | Stephen Kelly | 2015-05-18 | 1 | -1/+0 |
| | |||||
* | cmGlobalUnixMakefileGenerator3: Host the UnixCD. | Stephen Kelly | 2015-05-18 | 1 | -1/+1 |
| | |||||
* | cmGlobalUnixMakefileGenerator3: Host the PassMakeflags. | Stephen Kelly | 2015-05-18 | 1 | -1/+1 |
| | |||||
* | cmGlobalUnixMakefileGenerator3: Host the DefineWindowsNULL. | Stephen Kelly | 2015-05-16 | 1 | -1/+1 |
| | |||||
* | cmGlobalGenerator: Move some flags from cmLocalGenerator. | Stephen Kelly | 2015-05-14 | 1 | -2/+2 |
| | | | | | These flags are global, and so they belong here instead of being set on each local generator. | ||||
* | cmLocalGenerator: Require a global generator in the constructor. | Stephen Kelly | 2015-05-14 | 1 | -2/+1 |
| | | | | Port generator factory methods to pass it. | ||||
* | cmLocalGenerator: Require a parent in the constructor. | Stephen Kelly | 2015-04-28 | 1 | -2/+4 |
| | | | | | | | Pass the parent though cmGlobalGenerator::CreateLocalGenerator. This will make it easy to initialize state scopes independent of cmMakefile. | ||||
* | Drop the 'Full' field from cmDocumentationEntry | Brad King | 2013-10-16 | 1 | -1/+0 |
| | | | | | We need only 'Brief' for usage documentation. We no longer have builtin 'Full' documentation, which is now in Help/*/*.rst files. | ||||
* | Make cmGlobalGenerator::GetDocumentation() a static function | Patrick Gansterer | 2012-11-19 | 1 | -2/+2 |
| | | | | | Making the function static allows us to call it directly, without creating and removing an instance of the generator. | ||||
* | Remove trailing whitespace from most CMake and C/C++ code | Kitware Robot | 2012-08-13 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//' | ||||
* | Convert CMake to OSI-approved BSD License | Brad King | 2009-09-28 | 1 | -14/+9 |
| | | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range. | ||||
* | ENH: LIBPATH is not required for cl to work | Bill Hoffman | 2009-03-27 | 1 | -2/+1 |
| | |||||
* | ENH: better error message for mis-configured nmake environment | Bill Hoffman | 2008-10-14 | 1 | -0/+13 |
| | |||||
* | ENH: Improved escaping in kwsys/System. Added escape of % for NMake. Added ↵ | Brad King | 2008-01-13 | 1 | -0/+1 |
| | | | | escape of ; for the VS IDE. | ||||
* | ENH: change to make the documentation class more generic, about halfway ↵ | Ken Martin | 2007-10-22 | 1 | -3/+3 |
| | | | | there, also provides secitons for Variables now | ||||
* | ENH: add OPTIONAL keyword to ENABLE_LANGUAGE, so it will be possible to do | Alexander Neundorf | 2007-06-28 | 1 | -2/+4 |
| | | | | | | | | | | | | | something like this: ENABLE_LANGUAGE(ASM-ATT) IF(CMAKE_ASM-ATT_COMPILER_WORKS) ... do assembler stufff ELSE(CMAKE_ASM-ATT_COMPILER_WORKS) ... fallback to generic C/C++ ENDIF(CMAKE_ASM-ATT_COMPILER_WORKS) Alex | ||||
* | BUG: Fixed display of custom command comments with quotes, dollars, and ↵ | Brad King | 2006-10-04 | 1 | -1/+0 |
| | | | | other special characters in them. | ||||
* | ENH: Added generation of link rules into script files executed by a cmake -E ↵ | Brad King | 2006-06-15 | 1 | -0/+1 |
| | | | | command in order to support longer link lines. This is needed only on platforms without response file support and that may have weak shells. | ||||
* | STYLE: fix line length | Ken Martin | 2006-05-11 | 1 | -3/+4 |
| | |||||
* | ENH: Enabling color makefile support using cmsysTerminal_cfprintf. Support ↵ | Brad King | 2006-04-27 | 1 | -1/+1 |
| | | | | for color is automatically detected when messages are printed. Also made color scheme more readable on both black and white backgrounds. This option can be enabled by setting CMAKE_COLOR_MAKEFILE to true in the project. | ||||
* | ENH: Implemented VT100 terminal escape sequences. If CMAKE_COLOR_MAKEFILE ↵ | Brad King | 2006-03-30 | 1 | -0/+1 |
| | | | | is set then messages produced by makefiles will be in color if the native tool supports it. This addresses bug#3060. | ||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -2/+2 |
| | |||||
* | ENH: fix borland make clean targets before build, add new generators for ↵ | Bill Hoffman | 2005-12-22 | 1 | -0/+2 |
| | | | | msys and mingw | ||||
* | ENH: added new generator | Ken Martin | 2005-05-12 | 1 | -3/+3 |
| | |||||
* | ENH: Removed CMAKE_GENERATOR_NEW now that the old unix makefile generator is ↵ | Brad King | 2005-04-06 | 1 | -1/+0 |
| | | | | never used. | ||||
* | ENH: Enabling cmLocalUnixMakefileGenerator2 by default. | Brad King | 2005-03-01 | 1 | -3/+4 |
| | |||||
* | ENH: try to initialize all languages at the same time | Bill Hoffman | 2004-08-27 | 1 | -1/+1 |
| | |||||
* | BUG: fix for bug 303 pass makeflags to sub makes | Bill Hoffman | 2003-10-28 | 1 | -0/+1 |
| | |||||
* | ENH: add the unix makefile generator as an option from the windows GUI, this ↵ | Bill Hoffman | 2003-08-21 | 1 | -0/+1 |
| | | | | builds with mingw, cygwin, and combinations of make cl, bcc32 | ||||
* | ENH: allow lib prefix for to stay for nmake and borland make as it is not a ↵ | Bill Hoffman | 2003-08-01 | 1 | -0/+1 |
| | | | | system prefix | ||||
* | ENH: Registered global generators are now kept in a table in the cmake ↵ | Brad King | 2003-07-08 | 1 | -0/+8 |
| | | | | instance. Added support for documentation with a Generators section. | ||||
* | ENH: unify EnableLanguage across all generators | Bill Hoffman | 2002-12-05 | 1 | -9/+6 |
| | |||||
* | BUG: fix get make command problems. | Bill Hoffman | 2002-12-04 | 1 | -3/+8 |
| | |||||
* | determine CMAKE_MAKE_PROGRAM in EnableLanguage | Bill Hoffman | 2002-12-03 | 1 | -1/+4 |
| | |||||
* | Complete rework of makefile generators expect trouble | Bill Hoffman | 2002-11-08 | 1 | -18/+10 |
| | |||||
* | ENH: Added reference to Copyright.txt. Removed old reference to ITK ↵ | Brad King | 2002-10-23 | 1 | -3/+3 |
| | | | | copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs. | ||||
* | compiler warnings | Ken Martin | 2002-09-08 | 1 | -1/+1 |
| | |||||
* | updates | Ken Martin | 2002-09-04 | 1 | -1/+3 |
| | |||||
* | in progress | Ken Martin | 2002-08-30 | 1 | -0/+45 |