mirror of
https://github.com/clangen/musikcube.git
synced 2024-12-27 21:14:08 +00:00
Added missing "ignore" libraries for Linux scan.
This commit is contained in:
parent
1b2a4627c3
commit
bd7765c7bf
@ -7,7 +7,14 @@ const mac = process.platform === 'darwin';
|
|||||||
const filetype = mac ? '.dylib' : '.so';
|
const filetype = mac ? '.dylib' : '.so';
|
||||||
|
|
||||||
/* these libraries will always have dynamic dependencies, so ignore */
|
/* these libraries will always have dynamic dependencies, so ignore */
|
||||||
const ignoredLibraries = mac ? new Set([]) : new Set([]);
|
const ignoredLibraries = mac
|
||||||
|
? new Set([])
|
||||||
|
: new Set([
|
||||||
|
'libalsaout.so',
|
||||||
|
'libmpris.so',
|
||||||
|
'libpipewireout.so',
|
||||||
|
'libpulseout.so',
|
||||||
|
]);
|
||||||
|
|
||||||
/* we assume these dependencies will always be available on the user's
|
/* we assume these dependencies will always be available on the user's
|
||||||
target machine. */
|
target machine. */
|
||||||
|
Loading…
Reference in New Issue
Block a user