diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-02-14 09:23:23 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-02-24 15:43:25 (GMT) |
commit | d3682d8647789db759270a2f9c96493167468e61 (patch) | |
tree | 4399606aa8e7da24a691aed49584f153dcad1814 /Source/cmGeneratorTarget.h | |
parent | 5771f81d91d232a143345dc05835323f36ab7ecc (diff) | |
download | CMake-d3682d8647789db759270a2f9c96493167468e61.zip CMake-d3682d8647789db759270a2f9c96493167468e61.tar.gz CMake-d3682d8647789db759270a2f9c96493167468e61.tar.bz2 |
cmGeneratorTarget: Use a method to access the definition file.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 9a3339d..51d51f3 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -52,7 +52,7 @@ public: cmLocalGenerator* LocalGenerator; cmGlobalGenerator const* GlobalGenerator; - std::string ModuleDefinitionFile; + std::string GetModuleDefinitionFile() const; /** Full path with trailing slash to the top-level directory holding object files for this target. Includes the build @@ -118,6 +118,7 @@ private: struct SourceEntry { std::vector<cmSourceFile*> Depends; }; typedef std::map<cmSourceFile*, SourceEntry> SourceEntriesType; SourceEntriesType SourceEntries; + std::string ModuleDefinitionFile; std::vector<cmSourceFile*> CustomCommands; std::vector<cmSourceFile*> ExtraSources; |