diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-07-31 17:45:07 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-07-31 17:45:07 (GMT) |
commit | fc7e4169e165fdd0008b3db116c7f4919dc38fd7 (patch) | |
tree | 603e1164d67945bdb3b1fc5b55e4cc80a4138e9c /Source/cmUnixMakefileGenerator.h | |
parent | 836a280a6a98725c57ad4d69b8e33c1cef9de017 (diff) | |
download | CMake-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/cmUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmUnixMakefileGenerator.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h index c25879c..d3a7939 100644 --- a/Source/cmUnixMakefileGenerator.h +++ b/Source/cmUnixMakefileGenerator.h @@ -141,14 +141,11 @@ protected: const char* command2 = 0, const char* command3 = 0, const char* command4 = 0); - virtual void OutputBuildLibraryInDir(std::ostream& fout, - const char* path, - const char* library, - const char* fullpath); - virtual void OutputBuildExecutableInDir(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 virtual bool SamePath(const char* path1, const char* path2); virtual std::string GetOutputExtension(const char* sourceExtension); |