summaryrefslogtreecommitdiffstats
path: root/Source/cmNMakeMakefileGenerator.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-07-31 17:45:07 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-07-31 17:45:07 (GMT)
commitfc7e4169e165fdd0008b3db116c7f4919dc38fd7 (patch)
tree603e1164d67945bdb3b1fc5b55e4cc80a4138e9c /Source/cmNMakeMakefileGenerator.h
parent836a280a6a98725c57ad4d69b8e33c1cef9de017 (diff)
downloadCMake-fc7e4169e165fdd0008b3db116c7f4919dc38fd7.zip
CMake-fc7e4169e165fdd0008b3db116c7f4919dc38fd7.tar.gz
CMake-fc7e4169e165fdd0008b3db116c7f4919dc38fd7.tar.bz2
BUG: fix jump to directory and build for nmake if library path is not set. combine OutputBuildExecutableInDir and OutputBuildLibraryInDir into OutputBuildTargetInDir
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.h')
-rw-r--r--Source/cmNMakeMakefileGenerator.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmNMakeMakefileGenerator.h b/Source/cmNMakeMakefileGenerator.h
index 1a51a96..29d6715 100644
--- a/Source/cmNMakeMakefileGenerator.h
+++ b/Source/cmNMakeMakefileGenerator.h
@@ -79,10 +79,11 @@ protected:
const cmTarget &tgt);
virtual std::string GetOutputExtension(const char* sourceExtension);
virtual void OutputIncludeMakefile(std::ostream&, const char* file);
- virtual void OutputBuildLibraryInDir(std::ostream& fout,
- const char* path,
- const char* library,
- const char* fullpath);
+ virtual void OutputBuildTargetInDir(std::ostream& fout,
+ const char* path,
+ const char* library,
+ const char* fullpath,
+ const char* outputPath);
///! return true if the two paths are the same (checks short paths)
virtual bool SamePath(const char* path1, const char* path2);
void SetLibraryPathOption(const char* lib){ m_LibraryPathOption = lib;}