diff options
author | Brad King <brad.king@kitware.com> | 2007-03-09 14:30:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-03-09 14:30:16 (GMT) |
commit | 528f60f4a60440097a4a4997cdf59f0e564ba370 (patch) | |
tree | aa22bf1a28cf33e62664cac46a33c43f0727a70f /Source/cmTarget.h | |
parent | 3ec0ff05de74dc2a51461b0345d0d0e6fe0786b6 (diff) | |
download | CMake-528f60f4a60440097a4a4997cdf59f0e564ba370.zip CMake-528f60f4a60440097a4a4997cdf59f0e564ba370.tar.gz CMake-528f60f4a60440097a4a4997cdf59f0e564ba370.tar.bz2 |
ENH: Added implib option to cmTarget::GetDirectory to support a separate directory containing the import library. This is an incremental step for bug#4210.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index c58f853..d5b5474 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -174,7 +174,7 @@ public: configuration name is given then the generator will add its subdirectory for that configuration. Otherwise just the canonical output directory is given. */ - const char* GetDirectory(const char* config = 0); + const char* GetDirectory(const char* config = 0, bool implib = false); /** Get the location of the target in the build tree for the given configuration. This location is suitable for use as the LOCATION @@ -340,7 +340,7 @@ private: void SetPropertyDefault(const char* property, const char* default_value); // Get the full path to the target output directory. - const char* GetOutputDir(); + const char* GetOutputDir(bool implib); private: std::string Name; |