summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-11-13 20:59:32 (GMT)
committerBrad King <brad.king@kitware.com>2013-11-14 21:25:31 (GMT)
commit05923172f94d804dfba33957aa08ac88cc5cd0bd (patch)
tree5f394cf0dba177cad5905a01dfaee476d00278af /Source/cmGlobalGenerator.h
parent1befbfad3d9971335ab0e7deb1a93acfdccf0fb6 (diff)
downloadCMake-05923172f94d804dfba33957aa08ac88cc5cd0bd.zip
CMake-05923172f94d804dfba33957aa08ac88cc5cd0bd.tar.gz
CMake-05923172f94d804dfba33957aa08ac88cc5cd0bd.tar.bz2
cmGlobalGenerator: Add method to compute "cmake --build" command line
Create a GenerateCMakeBuildCommand method to generate a command-line string invoking "cmake --build" for a given target and configuration. Optionally allow the "-i" make flag and additional native options.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r--Source/cmGlobalGenerator.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h
index 2761158..82ffd64 100644
--- a/Source/cmGlobalGenerator.h
+++ b/Source/cmGlobalGenerator.h
@@ -134,6 +134,11 @@ public:
const char *targetName, const char* config,
bool ignoreErrors, bool fast);
+ /** Generate a "cmake --build" call for a given target and config. */
+ std::string GenerateCMakeBuildCommand(const char* target,
+ const char* config,
+ const char* native,
+ bool ignoreErrors);
///! Set the CMake instance
void SetCMakeInstance(cmake *cm);
@@ -422,6 +427,8 @@ private:
void ClearGeneratorMembers();
+ virtual const char* GetBuildIgnoreErrorsFlag() const { return 0; }
+
// Cache directory content and target files to be built.
struct DirectoryContent: public std::set<cmStdString>
{