diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-03-14 16:29:15 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-03-14 16:29:15 (GMT) |
commit | 791aa6052b9033e89645b324b1c99222936981df (patch) | |
tree | fdd95f48321d8074e4c97eaba0b03da3e885d409 /Source/cmLocalUnixMakefileGenerator.h | |
parent | f7c024df2a2ae6b8cf5ba127ee764a55f81f06e6 (diff) | |
download | CMake-791aa6052b9033e89645b324b1c99222936981df.zip CMake-791aa6052b9033e89645b324b1c99222936981df.tar.gz CMake-791aa6052b9033e89645b324b1c99222936981df.tar.bz2 |
ENH: add support for out of source source
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.h b/Source/cmLocalUnixMakefileGenerator.h index 403357e..19dbe75 100644 --- a/Source/cmLocalUnixMakefileGenerator.h +++ b/Source/cmLocalUnixMakefileGenerator.h @@ -23,6 +23,7 @@ class cmDependInformation; class cmMakeDepend; class cmTarget; class cmSourceFile; +class cmSubDirectory; /** \class cmLocalUnixMakefileGenerator * \brief Write a LocalUnix makefiles. @@ -148,8 +149,8 @@ protected: const char* target1, const char* target2, const char* depend, - const std::vector<std::pair<cmStdString, bool> >& - SubDirectories, + const std::map<std::string, + cmSubDirectory>& SubDirectories, bool silent = false, int order = 0); virtual void OutputMakeRule(std::ostream&, |