updated out folder

This commit is contained in:
milad 2019-10-31 12:39:13 -07:00
parent a336a71db9
commit 240764caa9
2 changed files with 7 additions and 1 deletions

View file

@ -5,7 +5,7 @@ add_custom_target(${TARGET_NAME}-npm-install
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
add_custom_target(${TARGET_NAME}
COMMAND npm run packager
COMMAND npm run packager -- --out ${CMAKE_CURRENT_BINARY_DIR}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
DEPENDS ${TARGET_NAME}-npm-install
)

View file

@ -1,5 +1,6 @@
var packager = require('electron-packager');
var osType = require('os').type();
var argv = require('yargs').argv;
var platform = null;
if (osType == "Darwin" || osType == "Linux") {
@ -32,6 +33,11 @@ if (osType == "Darwin") {
}
}
// check if we were passed a custom out directory, pass it along if so
if (argv.out) {
options.out = argv.out
}
// call the packager to produce the executable
packager(options)
.then(appPath => {