| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- #include "cmDSPMakefile.h"
- #include "cmSystemTools.h"
- #include "cmCollectFlags.h"
- #include <iostream>
- #include <fstream>
- #define WIN32_LEAN_AND_MEAN
- #include <windows.h>
- #undef GetCurrentDirectory
- static void Die(const char* message)
- {
- MessageBox(0, message, 0, MB_OK);
- exit(-1);
- }
- void cmDSPMakefile::OutputDSPFile()
- {
- // Setup /I and /LIBPATH options
- std::vector<std::string>& includes = m_BuildFlags.GetIncludeDirectories();
- std::vector<std::string>::iterator i;
- for(i = includes.begin(); i != includes.end(); ++i)
- {
- m_IncludeOptions += "/I \"";
- m_IncludeOptions += *i;
- m_IncludeOptions += "\" ";
- }
- std::vector<std::string>& libs = m_BuildFlags.GetLinkLibraries();
- for(i = libs.begin(); i != libs.end(); ++i)
- {
- m_DebugLibraryOptions += " ";
- m_DebugLibraryOptions += *i;
- m_DebugLibraryOptions += ".lib ";
- }
- std::vector<std::string>& libswin32 = m_BuildFlags.GetLinkLibrariesWin32();
- for(i = libswin32.begin(); i != libswin32.end(); ++i)
- {
- m_DebugLibraryOptions += " ";
- m_DebugLibraryOptions += *i;
- m_DebugLibraryOptions += ".lib ";
- }
- std::vector<std::string>& libdirs = m_BuildFlags.GetLinkDirectories();
- for(i = libdirs.begin(); i != libdirs.end(); ++i)
- {
- m_DebugLibraryOptions += " /LIBPATH:\"";
- m_DebugLibraryOptions += *i;
- if(i->find("Debug") == std::string::npos)
- {
- if(i->find("Release") == std::string::npos)
- {
- m_DebugLibraryOptions += "/Debug\" ";
- }
- }
- }
- m_DebugLibraryOptions += "/STACK:10000000 ";
- m_ReleaseLibraryOptions = m_DebugLibraryOptions;
- cmSystemTools::ReplaceString(m_ReleaseLibraryOptions, "Debug", "Release");
- // If the output directory is not the m_cmHomeDirectory
- // then create it.
- if(m_OutputDirectory != m_cmHomeDirectory)
- {
- if(!cmSystemTools::MakeDirectory(m_OutputDirectory.c_str()))
- {
- std::string message = "Error creating directory ";
- message += m_OutputDirectory;
- Die(message.c_str());
- }
- }
-
- if(!m_Executables)
- {
- if(this->m_LibraryName == "")
- {
- // if no library silently give up
- return;
- }
- this->SetBuildType(STATIC_LIBRARY);
- this->CreateSingleDSP();
- }
- else
- {
- this->CreateExecutableDSPFiles();
- }
- }
- void cmDSPMakefile::CreateExecutableDSPFiles()
- {
- for(int i = 0; i < m_Classes.size(); ++i)
- {
- cmClassFile& classfile = m_Classes[i];
- std::string fname = m_OutputDirectory;
- fname += "/";
- fname += classfile.m_ClassName;
- fname += ".dsp";
- std::ofstream fout(fname.c_str());
- if(!fout)
- {
- std::string message = "Error Writing ";
- message += fname;
- Die(message.c_str());
- }
- else
- {
- m_LibraryName = classfile.m_ClassName;
- this->SetBuildType(EXECUTABLE);
- std::string pname = m_LibraryName;
- m_CreatedProjectNames.push_back(pname);
- this->WriteDSPHeader(fout);
- this->WriteDSPBeginGroup(fout, "Source Files", "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat");
- this->WriteDSPBuildRule(fout, classfile.m_FullPath.c_str());
- this->WriteDSPEndGroup(fout);
- this->WriteDSPBuildRule(fout);
- this->WriteDSPFooter(fout);
- }
-
- }
- }
- void cmDSPMakefile::CreateSingleDSP()
- {
- std::string fname;
- fname = m_OutputDirectory;
- fname += "/";
- fname += this->m_LibraryName;
- fname += ".dsp";
- m_CreatedProjectNames.clear();
- std::string pname = m_LibraryName;
- m_CreatedProjectNames.push_back(pname);
- std::ofstream fout(fname.c_str());
- if(!fout)
- {
- std::string message = "Error Writing ";
- message += fname;
- Die(message.c_str());
- }
- this->WriteDSPFile(fout);
- }
- void cmDSPMakefile::WriteDSPBuildRule(std::ostream& fout)
- {
- std::string dspname = *(m_CreatedProjectNames.end()-1);
- dspname += ".dsp";
- std::string makefileIn = this->GetCurrentDirectory();
- makefileIn += "/";
- makefileIn += "CMakeLists.txt";
- std::string dsprule = GetHomeDirectory();
- dsprule += "/CMake/Source/CMakeSetupCMD ";
- dsprule += makefileIn;
- dsprule += " -DSP -H";
- dsprule += this->GetHomeDirectory();
- dsprule += " -D";
- dsprule += this->GetCurrentDirectory();
- dsprule += " -O";
- dsprule += this->GetOutputDirectory();
- dsprule += " -B";
- dsprule += this->GetOutputHomeDirectory();
- this->WriteCustomRule(fout, makefileIn.c_str(),
- dspname.c_str(),
- dsprule.c_str());
- }
- void cmDSPMakefile::WriteDSPFile(std::ostream& fout)
- {
- this->WriteDSPHeader(fout);
- this->WriteDSPBeginGroup(fout, "Source Files", "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat");
- this->WriteDSPBuildRules(fout);
- this->WriteDSPEndGroup(fout);
- this->WriteDSPBuildRule(fout);
- this->WriteDSPFooter(fout);
- }
- void cmDSPMakefile::WriteCustomRule(std::ostream& fout,
- const char* source,
- const char* result,
- const char* command)
- {
- fout << "# Begin Source File\n\n";
- fout << "SOURCE=" << source << "\n\n";
- fout << "# Begin Custom Build\n\n";
- fout << '\"' << result << "\" : $(SOURCE) \"$(INTDIR)\" \"$(OUTDIR)\"\n";
- fout << " " << command << "\n\n";
- fout << "# End Custom Build\n\n";
- fout << "# End Source File\n";
- }
- void cmDSPMakefile::WriteDSPBeginGroup(std::ostream& fout,
- const char* group,
- const char* filter)
- {
- fout << "# Begin Group \"" << group << "\"\n"
- "# PROP Default_Filter \"" << filter << "\"\n";
- }
- void cmDSPMakefile::WriteDSPEndGroup(std::ostream& fout)
- {
- fout << "# End Group\n";
- }
- void cmDSPMakefile::SetBuildType(BuildType b)
- {
- switch(b)
- {
- case STATIC_LIBRARY:
- m_DSPHeaderTemplate = m_cmHomeDirectory;
- m_DSPHeaderTemplate += "/CMake/Source/staticLibHeader.dsptemplate";
- m_DSPFooterTemplate = m_cmHomeDirectory;
- m_DSPFooterTemplate += "/CMake/Source/staticLibFooter.dsptemplate";
- break;
- case DLL:
- m_DSPHeaderTemplate = m_cmHomeDirectory;
- m_DSPHeaderTemplate += "/CMake/Source/DLLHeader.dsptemplate";
- m_DSPFooterTemplate = m_cmHomeDirectory;
- m_DSPFooterTemplate += "/CMake/Source/DLLFooter.dsptemplate";
- break;
- case EXECUTABLE:
- m_DSPHeaderTemplate = m_cmHomeDirectory;
- m_DSPHeaderTemplate += "/CMake/Source/EXEHeader.dsptemplate";
- m_DSPFooterTemplate = m_cmHomeDirectory;
- m_DSPFooterTemplate += "/CMake/Source/EXEFooter.dsptemplate";
- break;
- }
- }
-
- void cmDSPMakefile::WriteDSPHeader(std::ostream& fout)
- {
- std::ifstream fin(m_DSPHeaderTemplate.c_str());
- if(!fin)
- {
- std::string message = "Error Reading ";
- message += m_DSPHeaderTemplate;
- Die(message.c_str());
- }
- char buffer[2048];
- while(fin)
- {
- fin.getline(buffer, 2048);
- std::string line = buffer;
- cmSystemTools::ReplaceString(line, "CM_RELEASE_LIBRARIES",
- m_ReleaseLibraryOptions.c_str());
- cmSystemTools::ReplaceString(line, "CM_DEBUG_LIBRARIES",
- m_DebugLibraryOptions.c_str());
- cmSystemTools::ReplaceString(line, "BUILD_INCLUDES",
- m_IncludeOptions.c_str());
- cmSystemTools::ReplaceString(line, "OUTPUT_LIBNAME",
- m_LibraryName.c_str());
- cmSystemTools::ReplaceString(line,
- "EXTRA_DEFINES", "");
- fout << line.c_str() << std::endl;
- }
- }
- void cmDSPMakefile::WriteDSPFooter(std::ostream& fout)
- {
- std::ifstream fin(m_DSPFooterTemplate.c_str());
- if(!fin)
- {
- std::string message = "Error Reading ";
- message += m_DSPFooterTemplate;
- Die(message.c_str());
- }
- char buffer[2048];
- while(fin)
- {
- fin.getline(buffer, 2048);
- fout << buffer << std::endl;
- }
- }
-
- void cmDSPMakefile::WriteDSPBuildRules(std::ostream& fout)
- {
- for(int i = 0; i < m_Classes.size(); ++i)
- {
- if(!m_Classes[i].m_AbstractClass && !m_Classes[i].m_HeaderFileOnly)
- {
- this->WriteDSPBuildRule(fout, m_Classes[i].m_FullPath.c_str());
- }
- }
- }
- void cmDSPMakefile::WriteDSPBuildRule(std::ostream& fout, const char* path)
- {
- fout << "# Begin Source File\n\n";
- fout << "SOURCE="
- << path << "\n";
- fout << "# End Source File\n";
- }
|