2000-08-29 23:26:29 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2000 National Library of Medicine
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See COPYRIGHT.txt for copyright details.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmDSWMakefile_h
|
|
|
|
#define cmDSWMakefile_h
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
class cmDSPMakefile;
|
|
|
|
class cmMSProjectGenerator;
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-01-11 22:47:38 +03:00
|
|
|
/** \class cmDSWMakefile
|
|
|
|
* \brief Write a Microsoft Visual C++ DSW (workspace) file.
|
|
|
|
*
|
|
|
|
* cmDSWMakefile produces a Microsoft Visual C++ DSW (workspace) file.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
class cmDSWMakefile
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
|
|
|
public:
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
cmDSWMakefile(cmMakefile*);
|
2001-01-11 22:47:38 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the DSW workspace file.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
virtual void OutputDSWFile();
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
private:
|
2000-09-12 13:30:35 +04:00
|
|
|
void FindAllCMakeListsFiles(const char* subdir,
|
2001-01-05 19:41:20 +03:00
|
|
|
std::vector<cmMSProjectGenerator*>&);
|
2000-08-29 23:26:29 +04:00
|
|
|
void WriteDSWFile(std::ostream& fout);
|
|
|
|
void WriteDSWHeader(std::ostream& fout);
|
|
|
|
void WriteProject(std::ostream& fout,
|
2001-01-05 19:41:20 +03:00
|
|
|
const char* name, const char* path,
|
|
|
|
cmDSPMakefile* project);
|
2000-08-29 23:26:29 +04:00
|
|
|
void WriteDSWFooter(std::ostream& fout);
|
2001-01-05 19:41:20 +03:00
|
|
|
cmMakefile* m_Makefile;
|
2000-08-29 23:26:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|