mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-11 18:25:40 +02:00
Qt - fix up build.properties files to pick things up properly.
Was including too much of tern-qml and missing the qt icons.
This commit is contained in:
parent
192bfff688
commit
ea0064b77b
3 changed files with 8 additions and 4 deletions
|
@ -3,8 +3,11 @@ bin.includes = META-INF/,\
|
||||||
templates/,\
|
templates/,\
|
||||||
about.html,\
|
about.html,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
.,\
|
tern-qml/dist/,\
|
||||||
tern-qml/
|
tern-qml/qml-nsh.js,\
|
||||||
|
tern-qml/qml.js,\
|
||||||
|
tern-qml/ecma5-defs.js, \
|
||||||
|
.
|
||||||
src.includes = about.html,\
|
src.includes = about.html,\
|
||||||
schema/
|
schema/
|
||||||
source.. = src/
|
source.. = src/
|
||||||
|
|
|
@ -119,7 +119,7 @@ public class QMLAnalyzer implements IQMLAnalyzer {
|
||||||
try {
|
try {
|
||||||
return load(file);
|
return load(file);
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
return load(file.replaceAll("^/tern-qml/node_modules/", "/tern-qml/dist/"));
|
return load(file.replace("/tern-qml/node_modules/", "/tern-qml/dist/"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,4 +4,5 @@ bin.includes = META-INF/,\
|
||||||
.,\
|
.,\
|
||||||
plugin.xml,\
|
plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
about.html
|
about.html,\
|
||||||
|
icons/
|
||||||
|
|
Loading…
Add table
Reference in a new issue