diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-04-28 22:18:54 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-04-28 22:18:54 (GMT) |
commit | cb3ea2328a72a82b6e6174bdc9055459a207c26f (patch) | |
tree | 6b9395a6ed2bd555d47499f92317b50a445717e1 /Source/cmGlobalVisualStudio6Generator.h | |
parent | 7c5745ae9560851baf383cdac731ccf4c5a65014 (diff) | |
download | CMake-cb3ea2328a72a82b6e6174bdc9055459a207c26f.zip CMake-cb3ea2328a72a82b6e6174bdc9055459a207c26f.tar.gz CMake-cb3ea2328a72a82b6e6174bdc9055459a207c26f.tar.bz2 |
ENH: Start working on a method that abstracts generating of build command
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.h b/Source/cmGlobalVisualStudio6Generator.h index b31b3ca..3ff1141 100644 --- a/Source/cmGlobalVisualStudio6Generator.h +++ b/Source/cmGlobalVisualStudio6Generator.h @@ -54,11 +54,8 @@ public: * Try running cmake and building a file. This is used for dynalically * loaded commands, not as part of the usual build process. */ - virtual int Build(const char *srcdir, const char *bindir, - const char *projectName, const char *targetName, - std::string *output, - const char *makeProgram, - const char *config, bool clean); + virtual std::string GenerateBuildCommand(const char* makeProgram, + const char *projectName, const char *targetName, const char* config); /** * Generate the all required files for building this project/tree. This |