expand ignored extensions for deploy_tool
This commit is contained in:
@@ -269,8 +269,9 @@ void checkQtLib(PIString lib) {
|
|||||||
void procLdd(PIString file, bool ext_lib = false, int cur_depth = 0) {
|
void procLdd(PIString file, bool ext_lib = false, int cur_depth = 0) {
|
||||||
++cur_depth;
|
++cur_depth;
|
||||||
if (cur_depth > depth) return;
|
if (cur_depth > depth) return;
|
||||||
static PIStringList ignore_ext =
|
static PIStringList ignore_ext = {"png", "jpg", "jpeg", "gif", "bmp", "svg", "tif", "tiff", "ico", "pdf",
|
||||||
{"png", "jpg", "jpeg", "ico", "pdf", "txt", "conf", "json", "qml", "glsl", "fraq", "vert", "qmltypes", "metainfo", "qm", "ttf"};
|
"txt", "cfg", "conf", "json", "qml", "glsl", "fraq", "vert", "geom", "qmltypes",
|
||||||
|
"metainfo", "ts", "qm", "ttf", "htm", "html", "md", "sms", "smee", "blockmodel"};
|
||||||
PIString ext = PIFile::FileInfo(file).extension();
|
PIString ext = PIFile::FileInfo(file).extension();
|
||||||
if (ignore_ext.contains(ext.toLowerCase())) return;
|
if (ignore_ext.contains(ext.toLowerCase())) return;
|
||||||
piCout << "scan" << file << "...";
|
piCout << "scan" << file << "...";
|
||||||
|
|||||||
Reference in New Issue
Block a user