From 5195a4aaa7ef72b58030b26e3ef97f31aaa8404a Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 19 Jun 2014 11:55:03 -0700 Subject: [PATCH] Copy dlls during build task --- build/tasks/build-task.coffee | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/tasks/build-task.coffee b/build/tasks/build-task.coffee index 1484b6a07..69992dbc2 100644 --- a/build/tasks/build-task.coffee +++ b/build/tasks/build-task.coffee @@ -86,6 +86,10 @@ module.exports = (grunt) -> unless /.+\.plist/.test(sourcePath) grunt.file.copy(sourcePath, path.resolve(appDir, '..', subDirectory, filename)) + if process.platform is 'win32' + cp path.join('resources', 'win', 'msvcp100.dll'), shellAppDir + cp path.join('resources', 'win', 'msvcr100.dll'), shellAppDir + dependencies = ['compile', "generate-license:save"] dependencies.push('copy-info-plist') if process.platform is 'darwin' dependencies.push('set-exe-icon') if process.platform is 'win32'