summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalNinjaGenerator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Avoid direct use of std::(o|)stringstream (#13272)Brad King2012-06-121-2/+2
| | | | | | | | | Older C++ compilers do not provide a standard std::stringstream. Use our compatibility interfaces instead. Also avoid std::stringstream(openmode) signature. Our approximate stringstream implementation provided when the standard one is not available does not support the openmode argument.
* Pre-compute object file names before Ninja generationBrad King2012-03-161-31/+0
| | | | | | 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-3/+3
| | | | The generator never needs to modify custom command instances.
* Ninja: Import library support for WindowsPeter Collingbourne2012-02-191-0/+1
|
* Ninja: Shell encode the command used in custom commandsPeter Collingbourne2012-02-191-1/+2
|
* Ninja: Shell encode paths used in "cd" commandsPeter Collingbourne2012-02-191-5/+5
|
* Ninja: Backslash rules for WindowsPeter Collingbourne2012-02-191-3/+8
| | | | | | 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: win fixes: escape back slash/colon, use cd. as cmd.exe nopPeter Kuemmel2012-02-181-0/+4
|
* Ninja: Fix a 79-col violationPeter Collingbourne2012-02-051-1/+1
|
* Ninja: Add the Ninja generatorPeter Collingbourne2012-02-021-0/+413