diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-02-26 14:59:18 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-03-31 21:18:44 (GMT) |
commit | bf98cc252f18e761ed9a57d2f7a9304bfbb621de (patch) | |
tree | 11dddd9eb207be750e39a959baae2bb3c115799b /Source/cmSourceFile.h | |
parent | 8cd113ad1d715cc9ce865956870cd462d3659089 (diff) | |
download | CMake-bf98cc252f18e761ed9a57d2f7a9304bfbb621de.zip CMake-bf98cc252f18e761ed9a57d2f7a9304bfbb621de.tar.gz CMake-bf98cc252f18e761ed9a57d2f7a9304bfbb621de.tar.bz2 |
Genex: Evaluate TARGET_OBJECTS as a normal expression.
Diffstat (limited to 'Source/cmSourceFile.h')
-rw-r--r-- | Source/cmSourceFile.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h index 17c96ac..755a2cf 100644 --- a/Source/cmSourceFile.h +++ b/Source/cmSourceFile.h @@ -97,6 +97,9 @@ public: */ bool Matches(cmSourceFileLocation const&); + void SetObjectLibrary(std::string const& objlib); + std::string GetObjectLibrary() const; + private: cmSourceFileLocation Location; cmPropertyMap Properties; @@ -105,6 +108,7 @@ private: std::string Language; std::string FullPath; bool FindFullPathFailed; + std::string ObjectLibrary; bool FindFullPath(std::string* error); bool TryFullPath(const std::string& path, const std::string& ext); |