From d0bff83d17f037add656d6496426314fd97aa4c7 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 4 Feb 2017 18:32:37 +0000 Subject: [PATCH] Update archive script to add API DLL to GUI archive --- scripts/archive.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/archive.js b/scripts/archive.js index 4a70731c..c55aa3f4 100644 --- a/scripts/archive.js +++ b/scripts/archive.js @@ -91,6 +91,7 @@ function createAppArchive(rootPath, releasePath, tempPath, destPath) { if (os.platform() === 'win32') { binaries = [ 'LOOT.exe', + 'loot_api.dll', 'chrome_elf.dll', 'd3dcompiler_47.dll', 'libEGL.dll', @@ -107,6 +108,7 @@ function createAppArchive(rootPath, releasePath, tempPath, destPath) { } else { binaries = [ 'LOOT', + 'libloot_api.so', 'chrome-sandbox', 'libcef.so', 'natives_blob.bin',