|
|
@ -70,6 +70,8 @@ void cmExtraCodeLiteGenerator::Generate()
|
|
|
|
|
|
|
|
|
|
|
|
// loop projects and locate the root project.
|
|
|
|
// loop projects and locate the root project.
|
|
|
|
// and extract the information for creating the worspace
|
|
|
|
// and extract the information for creating the worspace
|
|
|
|
|
|
|
|
// root makefile
|
|
|
|
|
|
|
|
const cmMakefile* rmf = CM_NULLPTR;
|
|
|
|
for (std::map<std::string, std::vector<cmLocalGenerator*> >::const_iterator
|
|
|
|
for (std::map<std::string, std::vector<cmLocalGenerator*> >::const_iterator
|
|
|
|
it = projectMap.begin();
|
|
|
|
it = projectMap.begin();
|
|
|
|
it != projectMap.end(); ++it) {
|
|
|
|
it != projectMap.end(); ++it) {
|
|
|
@ -84,6 +86,7 @@ void cmExtraCodeLiteGenerator::Generate()
|
|
|
|
workspaceFileName = workspaceOutputDir + "/";
|
|
|
|
workspaceFileName = workspaceOutputDir + "/";
|
|
|
|
workspaceFileName += workspaceProjectName + ".workspace";
|
|
|
|
workspaceFileName += workspaceProjectName + ".workspace";
|
|
|
|
this->WorkspacePath = it->second[0]->GetCurrentBinaryDirectory();
|
|
|
|
this->WorkspacePath = it->second[0]->GetCurrentBinaryDirectory();
|
|
|
|
|
|
|
|
rmf = it->second[0]->GetMakefile();
|
|
|
|
;
|
|
|
|
;
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -96,13 +99,90 @@ void cmExtraCodeLiteGenerator::Generate()
|
|
|
|
xml.StartElement("CodeLite_Workspace");
|
|
|
|
xml.StartElement("CodeLite_Workspace");
|
|
|
|
xml.Attribute("Name", workspaceProjectName);
|
|
|
|
xml.Attribute("Name", workspaceProjectName);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool const targetsAreProjects =
|
|
|
|
|
|
|
|
rmf && rmf->IsOn("CMAKE_CODELITE_USE_TARGETS");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<std::string> ProjectNames;
|
|
|
|
|
|
|
|
if (targetsAreProjects) {
|
|
|
|
|
|
|
|
ProjectNames = CreateProjectsByTarget(&xml);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
ProjectNames = CreateProjectsByProjectMaps(&xml);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xml.StartElement("BuildMatrix");
|
|
|
|
|
|
|
|
xml.StartElement("WorkspaceConfiguration");
|
|
|
|
|
|
|
|
xml.Attribute("Name", this->ConfigName);
|
|
|
|
|
|
|
|
xml.Attribute("Selected", "yes");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (std::vector<std::string>::iterator it(ProjectNames.begin());
|
|
|
|
|
|
|
|
it != ProjectNames.end(); it++) {
|
|
|
|
|
|
|
|
xml.StartElement("Project");
|
|
|
|
|
|
|
|
xml.Attribute("Name", *it);
|
|
|
|
|
|
|
|
xml.Attribute("ConfigName", this->ConfigName);
|
|
|
|
|
|
|
|
xml.EndElement();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xml.EndElement(); // WorkspaceConfiguration
|
|
|
|
|
|
|
|
xml.EndElement(); // BuildMatrix
|
|
|
|
|
|
|
|
xml.EndElement(); // CodeLite_Workspace
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Create projects where targets are the projects
|
|
|
|
|
|
|
|
std::vector<std::string> cmExtraCodeLiteGenerator::CreateProjectsByTarget(
|
|
|
|
|
|
|
|
cmXMLWriter* xml)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
std::vector<std::string> retval;
|
|
|
|
|
|
|
|
// for each target in the workspace create a codelite project
|
|
|
|
|
|
|
|
const std::vector<cmLocalGenerator*>& lgs =
|
|
|
|
|
|
|
|
this->GlobalGenerator->GetLocalGenerators();
|
|
|
|
|
|
|
|
for (std::vector<cmLocalGenerator*>::const_iterator lg(lgs.begin());
|
|
|
|
|
|
|
|
lg != lgs.end(); lg++) {
|
|
|
|
|
|
|
|
for (std::vector<cmGeneratorTarget*>::const_iterator lt =
|
|
|
|
|
|
|
|
(*lg)->GetGeneratorTargets().begin();
|
|
|
|
|
|
|
|
lt != (*lg)->GetGeneratorTargets().end(); lt++) {
|
|
|
|
|
|
|
|
cmState::TargetType type = (*lt)->GetType();
|
|
|
|
|
|
|
|
std::string outputDir = (*lg)->GetCurrentBinaryDirectory();
|
|
|
|
|
|
|
|
std::string filename = outputDir + "/" + (*lt)->GetName() + ".project";
|
|
|
|
|
|
|
|
retval.push_back((*lt)->GetName());
|
|
|
|
|
|
|
|
// Make the project file relative to the workspace
|
|
|
|
|
|
|
|
std::string relafilename = cmSystemTools::RelativePath(
|
|
|
|
|
|
|
|
this->WorkspacePath.c_str(), filename.c_str());
|
|
|
|
|
|
|
|
std::string visualname = (*lt)->GetName();
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
|
|
|
|
case cmState::SHARED_LIBRARY:
|
|
|
|
|
|
|
|
case cmState::STATIC_LIBRARY:
|
|
|
|
|
|
|
|
case cmState::MODULE_LIBRARY:
|
|
|
|
|
|
|
|
visualname = "lib" + visualname;
|
|
|
|
|
|
|
|
case cmState::EXECUTABLE:
|
|
|
|
|
|
|
|
xml->StartElement("Project");
|
|
|
|
|
|
|
|
xml->Attribute("Name", visualname);
|
|
|
|
|
|
|
|
xml->Attribute("Path", relafilename);
|
|
|
|
|
|
|
|
xml->Attribute("Active", "No");
|
|
|
|
|
|
|
|
xml->EndElement();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CreateNewProjectFile(*lt, filename);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// The "older way of doing it.
|
|
|
|
|
|
|
|
std::vector<std::string> cmExtraCodeLiteGenerator::CreateProjectsByProjectMaps(
|
|
|
|
|
|
|
|
cmXMLWriter* xml)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
std::vector<std::string> retval;
|
|
|
|
// for each sub project in the workspace create a codelite project
|
|
|
|
// for each sub project in the workspace create a codelite project
|
|
|
|
for (std::map<std::string, std::vector<cmLocalGenerator*> >::const_iterator
|
|
|
|
for (std::map<std::string, std::vector<cmLocalGenerator*> >::const_iterator
|
|
|
|
it = projectMap.begin();
|
|
|
|
it = this->GlobalGenerator->GetProjectMap().begin();
|
|
|
|
it != projectMap.end(); ++it) {
|
|
|
|
it != this->GlobalGenerator->GetProjectMap().end(); it++) {
|
|
|
|
// retrive project information
|
|
|
|
|
|
|
|
std::string outputDir = it->second[0]->GetCurrentBinaryDirectory();
|
|
|
|
std::string outputDir = it->second[0]->GetCurrentBinaryDirectory();
|
|
|
|
std::string projectName = it->second[0]->GetProjectName();
|
|
|
|
std::string projectName = it->second[0]->GetProjectName();
|
|
|
|
|
|
|
|
retval.push_back(projectName);
|
|
|
|
std::string filename = outputDir + "/" + projectName + ".project";
|
|
|
|
std::string filename = outputDir + "/" + projectName + ".project";
|
|
|
|
|
|
|
|
|
|
|
|
// Make the project file relative to the workspace
|
|
|
|
// Make the project file relative to the workspace
|
|
|
@ -111,33 +191,13 @@ void cmExtraCodeLiteGenerator::Generate()
|
|
|
|
|
|
|
|
|
|
|
|
// create a project file
|
|
|
|
// create a project file
|
|
|
|
this->CreateProjectFile(it->second);
|
|
|
|
this->CreateProjectFile(it->second);
|
|
|
|
xml.StartElement("Project");
|
|
|
|
xml->StartElement("Project");
|
|
|
|
xml.Attribute("Name", projectName);
|
|
|
|
xml->Attribute("Name", projectName);
|
|
|
|
xml.Attribute("Path", filename);
|
|
|
|
xml->Attribute("Path", filename);
|
|
|
|
xml.Attribute("Active", "No");
|
|
|
|
xml->Attribute("Active", "No");
|
|
|
|
xml.EndElement();
|
|
|
|
xml->EndElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
xml.StartElement("BuildMatrix");
|
|
|
|
|
|
|
|
xml.StartElement("WorkspaceConfiguration");
|
|
|
|
|
|
|
|
xml.Attribute("Name", this->ConfigName);
|
|
|
|
|
|
|
|
xml.Attribute("Selected", "yes");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (std::map<std::string, std::vector<cmLocalGenerator*> >::const_iterator
|
|
|
|
|
|
|
|
it = projectMap.begin();
|
|
|
|
|
|
|
|
it != projectMap.end(); ++it) {
|
|
|
|
|
|
|
|
// retrive project information
|
|
|
|
|
|
|
|
std::string projectName = it->second[0]->GetProjectName();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xml.StartElement("Project");
|
|
|
|
|
|
|
|
xml.Attribute("Name", projectName);
|
|
|
|
|
|
|
|
xml.Attribute("ConfigName", this->ConfigName);
|
|
|
|
|
|
|
|
xml.EndElement();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xml.EndElement(); // WorkspaceConfiguration
|
|
|
|
|
|
|
|
xml.EndElement(); // BuildMatrix
|
|
|
|
|
|
|
|
xml.EndElement(); // CodeLite_Workspace
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* create the project file */
|
|
|
|
/* create the project file */
|
|
|
@ -152,42 +212,16 @@ void cmExtraCodeLiteGenerator::CreateProjectFile(
|
|
|
|
this->CreateNewProjectFile(lgs, filename);
|
|
|
|
this->CreateNewProjectFile(lgs, filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
std::string cmExtraCodeLiteGenerator::CollectSourceFiles(
|
|
|
|
const std::vector<cmLocalGenerator*>& lgs, const std::string& filename)
|
|
|
|
const cmMakefile* makefile, const cmGeneratorTarget* gt,
|
|
|
|
|
|
|
|
std::map<std::string, cmSourceFile*>& cFiles,
|
|
|
|
|
|
|
|
std::set<std::string>& otherFiles)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
const cmMakefile* mf = lgs[0]->GetMakefile();
|
|
|
|
const std::vector<std::string>& srcExts =
|
|
|
|
cmGeneratedFileStream fout(filename.c_str());
|
|
|
|
|
|
|
|
if (!fout) {
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
cmXMLWriter xml(fout);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
|
|
|
|
xml.StartDocument("utf-8");
|
|
|
|
|
|
|
|
xml.StartElement("CodeLite_Project");
|
|
|
|
|
|
|
|
xml.Attribute("Name", lgs[0]->GetProjectName());
|
|
|
|
|
|
|
|
xml.Attribute("InternalType", "");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Collect all used source files in the project
|
|
|
|
|
|
|
|
// Sort them into two containers, one for C/C++ implementation files
|
|
|
|
|
|
|
|
// which may have an acompanying header, one for all other files
|
|
|
|
|
|
|
|
std::string projectType;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<std::string> srcExts =
|
|
|
|
|
|
|
|
this->GlobalGenerator->GetCMakeInstance()->GetSourceExtensions();
|
|
|
|
this->GlobalGenerator->GetCMakeInstance()->GetSourceExtensions();
|
|
|
|
std::vector<std::string> headerExts =
|
|
|
|
|
|
|
|
this->GlobalGenerator->GetCMakeInstance()->GetHeaderExtensions();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::map<std::string, cmSourceFile*> cFiles;
|
|
|
|
std::string projectType;
|
|
|
|
std::set<std::string> otherFiles;
|
|
|
|
switch (gt->GetType()) {
|
|
|
|
for (std::vector<cmLocalGenerator*>::const_iterator lg = lgs.begin();
|
|
|
|
|
|
|
|
lg != lgs.end(); lg++) {
|
|
|
|
|
|
|
|
cmMakefile* makefile = (*lg)->GetMakefile();
|
|
|
|
|
|
|
|
std::vector<cmGeneratorTarget*> targets = (*lg)->GetGeneratorTargets();
|
|
|
|
|
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator ti = targets.begin();
|
|
|
|
|
|
|
|
ti != targets.end(); ti++) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
switch ((*ti)->GetType()) {
|
|
|
|
|
|
|
|
case cmState::EXECUTABLE: {
|
|
|
|
case cmState::EXECUTABLE: {
|
|
|
|
projectType = "Executable";
|
|
|
|
projectType = "Executable";
|
|
|
|
} break;
|
|
|
|
} break;
|
|
|
@ -204,13 +238,12 @@ void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch ((*ti)->GetType()) {
|
|
|
|
switch (gt->GetType()) {
|
|
|
|
case cmState::EXECUTABLE:
|
|
|
|
case cmState::EXECUTABLE:
|
|
|
|
case cmState::STATIC_LIBRARY:
|
|
|
|
case cmState::STATIC_LIBRARY:
|
|
|
|
case cmState::SHARED_LIBRARY:
|
|
|
|
case cmState::SHARED_LIBRARY:
|
|
|
|
case cmState::MODULE_LIBRARY: {
|
|
|
|
case cmState::MODULE_LIBRARY: {
|
|
|
|
std::vector<cmSourceFile*> sources;
|
|
|
|
std::vector<cmSourceFile*> sources;
|
|
|
|
cmGeneratorTarget* gt = *ti;
|
|
|
|
|
|
|
|
gt->GetSourceFiles(sources,
|
|
|
|
gt->GetSourceFiles(sources,
|
|
|
|
makefile->GetSafeDefinition("CMAKE_BUILD_TYPE"));
|
|
|
|
makefile->GetSafeDefinition("CMAKE_BUILD_TYPE"));
|
|
|
|
for (std::vector<cmSourceFile*>::const_iterator si = sources.begin();
|
|
|
|
for (std::vector<cmSourceFile*>::const_iterator si = sources.begin();
|
|
|
@ -220,8 +253,7 @@ void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
std::string lang = (*si)->GetLanguage();
|
|
|
|
std::string lang = (*si)->GetLanguage();
|
|
|
|
if (lang == "C" || lang == "CXX") {
|
|
|
|
if (lang == "C" || lang == "CXX") {
|
|
|
|
std::string srcext = (*si)->GetExtension();
|
|
|
|
std::string srcext = (*si)->GetExtension();
|
|
|
|
for (std::vector<std::string>::const_iterator ext =
|
|
|
|
for (std::vector<std::string>::const_iterator ext = srcExts.begin();
|
|
|
|
srcExts.begin();
|
|
|
|
|
|
|
|
ext != srcExts.end(); ++ext) {
|
|
|
|
ext != srcExts.end(); ++ext) {
|
|
|
|
if (srcext == *ext) {
|
|
|
|
if (srcext == *ext) {
|
|
|
|
isCFile = true;
|
|
|
|
isCFile = true;
|
|
|
@ -241,9 +273,61 @@ void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
default: // intended fallthrough
|
|
|
|
default: // intended fallthrough
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return projectType;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
|
|
|
|
const std::vector<cmLocalGenerator*>& lgs, const std::string& filename)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
const cmMakefile* mf = lgs[0]->GetMakefile();
|
|
|
|
|
|
|
|
cmGeneratedFileStream fout(filename.c_str());
|
|
|
|
|
|
|
|
if (!fout) {
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
cmXMLWriter xml(fout);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
|
|
|
|
xml.StartDocument("utf-8");
|
|
|
|
|
|
|
|
xml.StartElement("CodeLite_Project");
|
|
|
|
|
|
|
|
xml.Attribute("Name", lgs[0]->GetProjectName());
|
|
|
|
|
|
|
|
xml.Attribute("InternalType", "");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::string projectType;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Collect all used source files in the project
|
|
|
|
|
|
|
|
// Sort them into two containers, one for C/C++ implementation files
|
|
|
|
|
|
|
|
// which may have an acompanying header, one for all other files
|
|
|
|
|
|
|
|
std::map<std::string, cmSourceFile*> cFiles;
|
|
|
|
|
|
|
|
std::set<std::string> otherFiles;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (std::vector<cmLocalGenerator*>::const_iterator lg = lgs.begin();
|
|
|
|
|
|
|
|
lg != lgs.end(); lg++) {
|
|
|
|
|
|
|
|
cmMakefile* makefile = (*lg)->GetMakefile();
|
|
|
|
|
|
|
|
std::vector<cmGeneratorTarget*> targets = (*lg)->GetGeneratorTargets();
|
|
|
|
|
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator ti = targets.begin();
|
|
|
|
|
|
|
|
ti != targets.end(); ti++) {
|
|
|
|
|
|
|
|
projectType = CollectSourceFiles(makefile, *ti, cFiles, otherFiles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Get the project path ( we need it later to convert files to
|
|
|
|
|
|
|
|
// their relative path)
|
|
|
|
|
|
|
|
std::string projectPath = cmSystemTools::GetFilenamePath(filename);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CreateProjectSourceEntries(cFiles, otherFiles, &xml, projectPath, mf,
|
|
|
|
|
|
|
|
projectType);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xml.EndElement(); // CodeLite_Project
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cmExtraCodeLiteGenerator::FindMatchingHeaderfiles(
|
|
|
|
|
|
|
|
std::map<std::string, cmSourceFile*>& cFiles,
|
|
|
|
|
|
|
|
std::set<std::string>& otherFiles)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const std::vector<std::string>& headerExts =
|
|
|
|
|
|
|
|
this->GlobalGenerator->GetCMakeInstance()->GetHeaderExtensions();
|
|
|
|
|
|
|
|
|
|
|
|
// The following loop tries to add header files matching to implementation
|
|
|
|
// The following loop tries to add header files matching to implementation
|
|
|
|
// files to the project. It does that by iterating over all source files,
|
|
|
|
// files to the project. It does that by iterating over all source files,
|
|
|
|
// replacing the file name extension with ".h" and checks whether such a
|
|
|
|
// replacing the file name extension with ".h" and checks whether such a
|
|
|
@ -275,11 +359,17 @@ void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Get the project path ( we need it later to convert files to
|
|
|
|
void cmExtraCodeLiteGenerator::CreateProjectSourceEntries(
|
|
|
|
// their relative path)
|
|
|
|
std::map<std::string, cmSourceFile*>& cFiles,
|
|
|
|
std::string projectPath = cmSystemTools::GetFilenamePath(filename);
|
|
|
|
std::set<std::string>& otherFiles, cmXMLWriter* _xml,
|
|
|
|
|
|
|
|
const std::string& projectPath, const cmMakefile* mf,
|
|
|
|
|
|
|
|
const std::string& projectType)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmXMLWriter& xml(*_xml);
|
|
|
|
|
|
|
|
FindMatchingHeaderfiles(cFiles, otherFiles);
|
|
|
|
// Create 2 virtual folders: src and include
|
|
|
|
// Create 2 virtual folders: src and include
|
|
|
|
// and place all the implementation files into the src
|
|
|
|
// and place all the implementation files into the src
|
|
|
|
// folder, the rest goes to the include folder
|
|
|
|
// folder, the rest goes to the include folder
|
|
|
@ -292,8 +382,10 @@ void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
cFiles.begin();
|
|
|
|
cFiles.begin();
|
|
|
|
sit != cFiles.end(); ++sit) {
|
|
|
|
sit != cFiles.end(); ++sit) {
|
|
|
|
xml.StartElement("File");
|
|
|
|
xml.StartElement("File");
|
|
|
|
xml.Attribute("Name", cmSystemTools::RelativePath(projectPath.c_str(),
|
|
|
|
std::string fpath(sit->first);
|
|
|
|
sit->first.c_str()));
|
|
|
|
std::string frelapath =
|
|
|
|
|
|
|
|
cmSystemTools::RelativePath(projectPath.c_str(), sit->first.c_str());
|
|
|
|
|
|
|
|
xml.Attribute("Name", frelapath);
|
|
|
|
xml.EndElement();
|
|
|
|
xml.EndElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xml.EndElement(); // VirtualDirectory
|
|
|
|
xml.EndElement(); // VirtualDirectory
|
|
|
@ -350,10 +442,17 @@ void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
xml.EndElement(); // ResourceCompiler
|
|
|
|
xml.EndElement(); // ResourceCompiler
|
|
|
|
|
|
|
|
|
|
|
|
xml.StartElement("General");
|
|
|
|
xml.StartElement("General");
|
|
|
|
|
|
|
|
std::string outputPath = mf->GetSafeDefinition("EXECUTABLE_OUTPUT_PATH");
|
|
|
|
|
|
|
|
if (!outputPath.empty())
|
|
|
|
|
|
|
|
xml.Attribute("OutputFile", outputPath + "/$(ProjectName)");
|
|
|
|
|
|
|
|
else
|
|
|
|
xml.Attribute("OutputFile", "$(IntermediateDirectory)/$(ProjectName)");
|
|
|
|
xml.Attribute("OutputFile", "$(IntermediateDirectory)/$(ProjectName)");
|
|
|
|
xml.Attribute("IntermediateDirectory", "./");
|
|
|
|
xml.Attribute("IntermediateDirectory", "./");
|
|
|
|
xml.Attribute("Command", "./$(ProjectName)");
|
|
|
|
xml.Attribute("Command", "./$(ProjectName)");
|
|
|
|
xml.Attribute("CommandArguments", "");
|
|
|
|
xml.Attribute("CommandArguments", "");
|
|
|
|
|
|
|
|
if (!outputPath.empty())
|
|
|
|
|
|
|
|
xml.Attribute("WorkingDirectory", outputPath);
|
|
|
|
|
|
|
|
else
|
|
|
|
xml.Attribute("WorkingDirectory", "$(IntermediateDirectory)");
|
|
|
|
xml.Attribute("WorkingDirectory", "$(IntermediateDirectory)");
|
|
|
|
xml.Attribute("PauseExecWhenProcTerminates", "yes");
|
|
|
|
xml.Attribute("PauseExecWhenProcTerminates", "yes");
|
|
|
|
xml.EndElement(); // General
|
|
|
|
xml.EndElement(); // General
|
|
|
@ -408,6 +507,53 @@ void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
|
|
|
|
|
|
|
|
xml.EndElement(); // GlobalSettings
|
|
|
|
xml.EndElement(); // GlobalSettings
|
|
|
|
xml.EndElement(); // Settings
|
|
|
|
xml.EndElement(); // Settings
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cmExtraCodeLiteGenerator::CreateNewProjectFile(
|
|
|
|
|
|
|
|
const cmGeneratorTarget* gt, const std::string& filename)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
const cmMakefile* mf = gt->Makefile;
|
|
|
|
|
|
|
|
cmGeneratedFileStream fout(filename.c_str());
|
|
|
|
|
|
|
|
if (!fout) {
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
cmXMLWriter xml(fout);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
|
|
|
|
xml.StartDocument("utf-8");
|
|
|
|
|
|
|
|
xml.StartElement("CodeLite_Project");
|
|
|
|
|
|
|
|
std::string visualname = gt->GetName();
|
|
|
|
|
|
|
|
switch (gt->GetType()) {
|
|
|
|
|
|
|
|
case cmState::STATIC_LIBRARY:
|
|
|
|
|
|
|
|
case cmState::SHARED_LIBRARY:
|
|
|
|
|
|
|
|
case cmState::MODULE_LIBRARY:
|
|
|
|
|
|
|
|
visualname = "lib" + visualname;
|
|
|
|
|
|
|
|
default: // intended fallthrough
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
xml.Attribute("Name", visualname);
|
|
|
|
|
|
|
|
xml.Attribute("InternalType", "");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Collect all used source files in the project
|
|
|
|
|
|
|
|
// Sort them into two containers, one for C/C++ implementation files
|
|
|
|
|
|
|
|
// which may have an acompanying header, one for all other files
|
|
|
|
|
|
|
|
std::string projectType;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<std::string> headerExts =
|
|
|
|
|
|
|
|
this->GlobalGenerator->GetCMakeInstance()->GetHeaderExtensions();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::map<std::string, cmSourceFile*> cFiles;
|
|
|
|
|
|
|
|
std::set<std::string> otherFiles;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
projectType = CollectSourceFiles(mf, gt, cFiles, otherFiles);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Get the project path ( we need it later to convert files to
|
|
|
|
|
|
|
|
// their relative path)
|
|
|
|
|
|
|
|
std::string projectPath = cmSystemTools::GetFilenamePath(filename);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CreateProjectSourceEntries(cFiles, otherFiles, &xml, projectPath, mf,
|
|
|
|
|
|
|
|
projectType);
|
|
|
|
|
|
|
|
|
|
|
|
xml.EndElement(); // CodeLite_Project
|
|
|
|
xml.EndElement(); // CodeLite_Project
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|