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