Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid direct use of std::(o|)stringstream (#13272) | Brad King | 2012-06-12 | 1 | -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 generation | Brad King | 2012-03-16 | 1 | -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 cmCustomCommand | Brad King | 2012-03-13 | 1 | -3/+3 |
| | | | | The generator never needs to modify custom command instances. | ||||
* | Ninja: Import library support for Windows | Peter Collingbourne | 2012-02-19 | 1 | -0/+1 |
| | |||||
* | Ninja: Shell encode the command used in custom commands | Peter Collingbourne | 2012-02-19 | 1 | -1/+2 |
| | |||||
* | Ninja: Shell encode paths used in "cd" commands | Peter Collingbourne | 2012-02-19 | 1 | -5/+5 |
| | |||||
* | Ninja: Backslash rules for Windows | Peter Collingbourne | 2012-02-19 | 1 | -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 nop | Peter Kuemmel | 2012-02-18 | 1 | -0/+4 |
| | |||||
* | Ninja: Fix a 79-col violation | Peter Collingbourne | 2012-02-05 | 1 | -1/+1 |
| | |||||
* | Ninja: Add the Ninja generator | Peter Collingbourne | 2012-02-02 | 1 | -0/+413 |