mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
ide: Fixed issue with freezing .ext on unrecognized input
git-svn-id: svn://ultimatepp.org/upp/trunk@15943 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
7422893f51
commit
35c4f55e8e
1 changed files with 5 additions and 1 deletions
|
|
@ -291,9 +291,11 @@ Vector<String> CppBuilder::CustomStep(const String& pf, const String& package_,
|
|||
out.FindAdd(f);
|
||||
}
|
||||
}
|
||||
else
|
||||
if(p.Id("exclude")) {
|
||||
ExtExclude(p, out);
|
||||
}
|
||||
else
|
||||
if(p.Id("include_path")) {
|
||||
Vector<String> e = ReadPatterns(p);
|
||||
for(int j = 0; j < e.GetCount(); j++) {
|
||||
|
|
@ -309,10 +311,12 @@ Vector<String> CppBuilder::CustomStep(const String& pf, const String& package_,
|
|||
include_path.Add(ee);
|
||||
}
|
||||
}
|
||||
else
|
||||
if(p.Id("exclude_path")) {
|
||||
ExtExclude(p, include_path);
|
||||
}
|
||||
if(p.Id("includes")) {
|
||||
else {
|
||||
p.PassId("includes");
|
||||
Vector<String> e = ReadPatterns(p);
|
||||
for(int i = 0; i < files.GetCount(); i++)
|
||||
for(int j = 0; j < e.GetCount(); j++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue