mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 23:42:58 +02:00
updated out folder
This commit is contained in:
parent
a336a71db9
commit
240764caa9
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
)
|
||||
|
|
|
@ -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 => {
|
||||
|
|
Loading…
Reference in a new issue