summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalNinjaGenerator.h
Commit message (Collapse)AuthorAgeFilesLines
* Make cmGlobalGenerator::GetDocumentation() a static functionPatrick Gansterer2012-11-191-1/+1
| | | | | Making the function static allows us to call it directly, without creating and removing an instance of the generator.
* Introduce the abstract class cmGlobalGeneratorFactoryPatrick Gansterer2012-11-191-2/+3
| | | | | This new abstract class allows us move some logic from the cmGlobalGenerator into its own layer in a next step.
* Ninja: don't confuse ninja's rsp files with nmake'sPeter Kümmel2012-09-281-0/+1
| | | | Move response files into CMakeFiles/ which makes them different to nmake's.
* Ninja: remove 'friend' in ninja codePeter Kümmel2012-07-181-52/+52
|
* Ninja: Copy resource files in the bundle.Nicolas Despres2012-07-171-0/+4
| | | | This patch fixes test BundleTest on Darwin.
* Ninja: remove some unused default argumentsPeter Kümmel2012-07-101-7/+7
|
* Ninja: also write link libraries to rsp filePeter Kümmel2012-07-101-1/+3
| | | | and enable rspfile support on Linux, needed for commands longer than e.g. 2096152 characters on Ubuntu.
* Ninja: also consider rule command length for rsp filePeter Kuemmel2012-07-021-0/+5
|
* Ninja: build cmcldeps with mingwPeter Kuemmel2012-06-151-1/+1
|
* Ninja: Eclipse and KDevelop fixes for ninjaPeter Kuemmel2012-06-151-0/+2
| | | | Thx to Claus Klein
* Ninja: undo all the NOSHELL patchesPeter Kuemmel2012-06-141-1/+0
|
* Ninja: don't use shell when cmake is called directlyPeter Kuemmel2012-06-141-0/+1
| | | | | | | | | | | | | | | When linking with cmake and vs_link_* the command line could be too long for cmd.exe, which needs not to be called in this case. (was not cached by a test) Introduce rules which don't use the shell and use this rule when there are no pre or post step. For free we get a small speedup, because cmd is then not called. Also be more accurate when estimating the command line length.
* Ninja: remove unused CommentStreamPeter Kuemmel2012-06-131-7/+0
|
* Ninja: use slashes for include dirs, so also slahes are in the .d filesPeter Kuemmel2012-06-121-0/+3
|
* Ninja: don't pollute the rules file with useless commentsPeter Kuemmel2012-06-101-0/+10
|
* Ninja: add response file support on WindowsPeter Kuemmel2012-06-051-1/+6
| | | | | | | When MinGW is used slashes are used for dependencies because ar.exe can't read rsp files with backslashes. Many thx to Claus Klein for starting working on this.
* Make the CMAKE_EXPORT_COMPILE_COMMANDS option work with Ninja.Stephen Kelly2012-06-041-0/+6
|
* Ninja: Add a convenient 'help' target.Nicolas Despres2012-05-091-0/+1
|
* Ninja: Add a convenient 'clean' target.Nicolas Despres2012-05-091-0/+1
| | | | | It has been asked on the mailing list: http://public.kitware.com/pipermail/cmake-developers/2012-April/003805.html
* Pre-compute object file names before Ninja generationBrad King2012-03-161-0/+6
| | | | | | Implement cmGlobalGenerator::ComputeTargetObjects in the Ninja generator to pre-compute all the object file names. Use the results during generation instead of re-computing it later.
* Ninja: Constify use of cmCustomCommandBrad King2012-03-131-2/+2
| | | | The generator never needs to modify custom command instances.
* Ninja: add .def file supportPeter Kuemmel2012-03-071-0/+2
|
* Ninja: Backslash rules for WindowsPeter Collingbourne2012-02-191-0/+1
| | | | | | Generally these are only required in build statements, as Ninja wants to be able to chop paths up. But it doesn't hurt to also try to use them in command line arguments.
* Ninja: Appease various compilersPeter Collingbourne2012-02-051-1/+1
|
* Ninja: Add the Ninja generatorPeter Collingbourne2012-02-021-0/+329