diff options
author | Peter Kümmel <syntheticpp@gmx.net> | 2012-07-10 07:56:11 (GMT) |
---|---|---|
committer | Peter Kümmel <syntheticpp@gmx.net> | 2012-07-10 08:53:24 (GMT) |
commit | 7f647cf5ebf0b45663cdabe4fd137b87753b857c (patch) | |
tree | 2cee1cc242bf2e7b3836d5d4b540829821dc8721 /Source/cmGlobalNinjaGenerator.h | |
parent | 6274ca6f910683495124d22e371a1adc9cf0eebc (diff) | |
download | CMake-7f647cf5ebf0b45663cdabe4fd137b87753b857c.zip CMake-7f647cf5ebf0b45663cdabe4fd137b87753b857c.tar.gz CMake-7f647cf5ebf0b45663cdabe4fd137b87753b857c.tar.bz2 |
Ninja: also write link libraries to rsp file
and enable rspfile support on Linux, needed for commands longer than e.g. 2096152 characters on Ubuntu.
Diffstat (limited to 'Source/cmGlobalNinjaGenerator.h')
-rw-r--r-- | Source/cmGlobalNinjaGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmGlobalNinjaGenerator.h b/Source/cmGlobalNinjaGenerator.h index e5f8099..9431c57 100644 --- a/Source/cmGlobalNinjaGenerator.h +++ b/Source/cmGlobalNinjaGenerator.h @@ -116,7 +116,8 @@ public: const std::string& description, const std::string& comment = "", const std::string& depfile = "", - const std::string& rspfile = "" , + const std::string& rspfile = "", + const std::string& rspcontent = "", bool restat = false, bool generator = false); @@ -234,6 +235,7 @@ public: const std::string& comment = "", const std::string& depfile = "", const std::string& rspfile = "", + const std::string& rspcontent = "", bool restat = false, bool generator = false); |