本文整理汇总了C++中ProjectPtr::GetWorkspace方法的典型用法代码示例。如果您正苦于以下问题:C++ ProjectPtr::GetWorkspace方法的具体用法?C++ ProjectPtr::GetWorkspace怎么用?C++ ProjectPtr::GetWorkspace使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProjectPtr
的用法示例。
在下文中一共展示了ProjectPtr::GetWorkspace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Import
bool WSImporter::Import(wxString& errMsg)
{
wxString compileName = defaultCompiler.Lower();
bool isGccCompile = compileName.Contains(wxT("gnu")) || compileName.Contains(wxT("gcc")) ||
compileName.Contains(wxT("g++")) || compileName.Contains(wxT("mingw"));
for(std::shared_ptr<GenericImporter> importer : importers) {
if(importer->OpenWordspace(filename, defaultCompiler)) {
if(importer->isSupportedWorkspace()) {
GenericWorkspacePtr gworskspace = importer->PerformImport();
wxString errMsgLocal;
bool showDlg = true;
if(!clCxxWorkspaceST::Get()->CreateWorkspace(gworskspace->name, gworskspace->path, errMsgLocal))
return false;
clCxxWorkspace* clWorkspace = NULL;
WorkspaceConfiguration::ConfigMappingList cmlDebug;
WorkspaceConfiguration::ConfigMappingList cmlRelease;
for(GenericProjectPtr project : gworskspace->projects) {
GenericCfgType cfgType = project->cfgType;
wxString projectType, errMsg;
switch(cfgType) {
case GenericCfgType::DYNAMIC_LIBRARY:
projectType = Project::DYNAMIC_LIBRARY;
break;
case GenericCfgType::STATIC_LIBRARY:
projectType = Project::STATIC_LIBRARY;
break;
case GenericCfgType::EXECUTABLE:
default:
projectType = Project::EXECUTABLE;
break;
}
if(!clCxxWorkspaceST::Get()->CreateProject(project->name, project->path, projectType, true, errMsg))
return false;
ProjectPtr proj = clCxxWorkspaceST::Get()->FindProjectByName(project->name, errMsg);
ProjectSettingsPtr le_settings(new ProjectSettings(NULL));
le_settings->RemoveConfiguration(wxT("Debug"));
le_settings->SetProjectType(projectType);
if(clWorkspace == NULL)
clWorkspace = proj->GetWorkspace();
for(GenericProjectCfgPtr cfg : project->cfgs) {
BuildConfigPtr le_conf(new BuildConfig(NULL));
wxString outputFileName = wxT("");
switch(cfgType) {
case GenericCfgType::DYNAMIC_LIBRARY:
outputFileName = wxT("$(IntermediateDirectory)/$(ProjectName)");
outputFileName += DYNAMIC_LIBRARY_EXT;
break;
case GenericCfgType::STATIC_LIBRARY:
outputFileName = wxT("$(IntermediateDirectory)/$(ProjectName)");
outputFileName += STATIC_LIBRARY_EXT;
if(isGccCompile && outputFileName.Contains(wxT(".lib"))) {
outputFileName.Replace(wxT(".lib"), wxT(".a"));
}
break;
case GenericCfgType::EXECUTABLE:
outputFileName = wxT("$(IntermediateDirectory)/$(ProjectName)");
outputFileName += EXECUTABLE_EXT;
break;
}
std::vector<wxString> envVarElems;
le_conf->SetName(cfg->name);
if(!cfg->includePath.IsEmpty()) {
envVarElems.push_back(cfg->includePath);
le_conf->SetIncludePath(cfg->includePath);
}
if(!cfg->libraries.IsEmpty()) {
envVarElems.push_back(cfg->libraries);
if(isGccCompile && cfg->libraries.Contains(wxT(".lib"))) {
cfg->libraries.Replace(wxT(".lib"), wxT(".a"));
}
le_conf->SetLibraries(cfg->libraries);
}
if(!cfg->libPath.IsEmpty()) {
envVarElems.push_back(cfg->libPath);
le_conf->SetLibPath(cfg->libPath);
}
if(!cfg->preprocessor.IsEmpty()) {
envVarElems.push_back(cfg->preprocessor);
le_conf->SetPreprocessor(cfg->preprocessor);
}
if(!cfg->intermediateDirectory.IsEmpty())
//.........这里部分代码省略.........