diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2000-09-12 09:30:35 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2000-09-12 09:30:35 (GMT) |
commit | aa3ca2b432ab346c28ea7c758cbbf57ca346e139 (patch) | |
tree | dec236eb51e746ae123edb3e9c01a5595381e12f /Source/cmDSWWriter.h | |
parent | e2ad65d3c27177b8f3ee3c9b81382ea883a3bfbd (diff) | |
download | CMake-aa3ca2b432ab346c28ea7c758cbbf57ca346e139.zip CMake-aa3ca2b432ab346c28ea7c758cbbf57ca346e139.tar.gz CMake-aa3ca2b432ab346c28ea7c758cbbf57ca346e139.tar.bz2 |
ENH: CMake and configure now use SUBDIRS in CMakeLists.txt to find all the directories of the system.
Diffstat (limited to 'Source/cmDSWWriter.h')
-rw-r--r-- | Source/cmDSWWriter.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmDSWWriter.h b/Source/cmDSWWriter.h index e4036a1..6c3fc9e 100644 --- a/Source/cmDSWWriter.h +++ b/Source/cmDSWWriter.h @@ -24,6 +24,7 @@ #include "cmMakefile.h" #include <vector> +class cmDSPMakefile; class cmDSWMakefile : public cmMakefile @@ -31,9 +32,10 @@ class cmDSWMakefile : public cmMakefile public: virtual void OutputDSWFile(); private: + void FindAllCMakeListsFiles(const char* subdir, + std::vector<cmDSPMakefile*>&); void WriteDSWFile(std::ostream& fout); void WriteDSWHeader(std::ostream& fout); - std::vector<std::string> CreateDSPFile(const char* dir); void WriteProject(std::ostream& fout, const char* name, const char* path); void WriteDSWFooter(std::ostream& fout); |