You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
472 B
18 lines
472 B
TEMPLATE = subdirs |
|
|
|
defineTest(addSubdir) { |
|
for(subdir, 1) { |
|
entries = $$files($$subdir/*) |
|
for(entry, entries) { |
|
fullPath = $$replace(entry, ;,"") |
|
fullPath = $$replace(fullPath, \\\\, /) |
|
name = $$replace(fullPath, $$re_escape("$$subdir/"), "") |
|
os2|win32: fullPath = $$lower($$fullPath) |
|
exists($$fullPath/*.pro): SUBDIRS += $$fullPath |
|
} |
|
} |
|
|
|
export (SUBDIRS) |
|
} |
|
|
|
addSubdir($$PWD)
|
|
|