diff options
author | Alex Neundorf <neundorf@kde.org> | 2013-12-10 21:52:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-12-19 15:04:00 (GMT) |
commit | c3d20c2ac940721035b1ad0a43cfc160205d1cde (patch) | |
tree | 93590c518f017eac8d2c95a2f1bb1ddedaf727f6 /Source/cmExtraKateGenerator.h | |
parent | 1eaf2f263b11afbe4eaa1490a18354ecb7a79acb (diff) | |
download | CMake-c3d20c2ac940721035b1ad0a43cfc160205d1cde.zip CMake-c3d20c2ac940721035b1ad0a43cfc160205d1cde.tar.gz CMake-c3d20c2ac940721035b1ad0a43cfc160205d1cde.tar.bz2 |
kate: fix ninja support
ninja needs to be run from the toplevel build dir,
not from the target dir, as make
Alex
Diffstat (limited to 'Source/cmExtraKateGenerator.h')
-rw-r--r-- | Source/cmExtraKateGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmExtraKateGenerator.h b/Source/cmExtraKateGenerator.h index 37a6886..6ced5fe 100644 --- a/Source/cmExtraKateGenerator.h +++ b/Source/cmExtraKateGenerator.h @@ -46,7 +46,8 @@ private: const std::string& target, const std::string& make, const std::string& makeArgs, - const std::string& path) const; + const std::string& path, + const char* homeOutputDir) const; std::string GenerateFilesString(const cmMakefile* mf) const; std::string GetPathBasename(const std::string& path) const; @@ -55,6 +56,7 @@ private: const std::string& path) const; std::string ProjectName; + bool UseNinja; }; #endif |