mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-11 10:15:39 +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/,\
|
||||
about.html,\
|
||||
plugin.properties,\
|
||||
.,\
|
||||
tern-qml/
|
||||
tern-qml/dist/,\
|
||||
tern-qml/qml-nsh.js,\
|
||||
tern-qml/qml.js,\
|
||||
tern-qml/ecma5-defs.js, \
|
||||
.
|
||||
src.includes = about.html,\
|
||||
schema/
|
||||
source.. = src/
|
||||
|
|
|
@ -119,7 +119,7 @@ public class QMLAnalyzer implements IQMLAnalyzer {
|
|||
try {
|
||||
return load(file);
|
||||
} 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.properties,\
|
||||
about.html
|
||||
about.html,\
|
||||
icons/
|
||||
|
|
Loading…
Add table
Reference in a new issue