mirror of
https://github.com/QuasarApp/SoundBand.git
synced 2025-04-29 08:44:31 +00:00
18 lines
343 B
JavaScript
18 lines
343 B
JavaScript
|
// Constructor
|
||
|
function Component()
|
||
|
{
|
||
|
|
||
|
generateTr();
|
||
|
}
|
||
|
|
||
|
function generateTr() {
|
||
|
component.setValue("DisplayName", qsTr("SoundBandTests"));
|
||
|
component.setValue("Description", qsTr("Install tests of SoundBand"));
|
||
|
|
||
|
}
|
||
|
|
||
|
function isNoEmpty(dir){
|
||
|
var libsArray = installer.findPath("*", [dir]);
|
||
|
return Boolean(libsArray.length);
|
||
|
}
|