diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-06-24 19:10:47 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-06-24 19:10:47 (GMT) |
commit | 117f961a5adda76ebb87a96b323e66aa3ec0c0b8 (patch) | |
tree | 780d564717c907579d7a2e40fa2eddde6deff2e2 /Source/cmTarget.h | |
parent | 45e508f5300b8ebcfe3a3aca24bd0906eb749e36 (diff) | |
download | CMake-117f961a5adda76ebb87a96b323e66aa3ec0c0b8.zip CMake-117f961a5adda76ebb87a96b323e66aa3ec0c0b8.tar.gz CMake-117f961a5adda76ebb87a96b323e66aa3ec0c0b8.tar.bz2 |
moved function into cmTarget
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 89dac6a..a222f26 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -142,6 +142,12 @@ public: const char *GetProperty(const char *prop) const; bool GetPropertyAsBool(const char *prop) const; + /** + * Trace through the source files in this target and add al source files + * that they depend on, used by the visual studio generators + */ + void TraceVSDependencies(std::string projName, cmMakefile *mf); + private: /** * A list of direct dependencies. Use in conjunction with DependencyMap. @@ -196,7 +202,6 @@ private: void GatherDependencies( const cmMakefile& mf, const std::string& lib, DependencyMap& dep_map ); - private: std::vector<cmCustomCommand> m_PreBuildCommands; std::vector<cmCustomCommand> m_PreLinkCommands; |