1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-09-24 21:04:57 +00:00

Support for GOG

This commit is contained in:
tobspr
2022-07-18 14:18:02 +02:00
parent 81e3d2ba76
commit 400ee8e737
12 changed files with 1008 additions and 5 deletions

View File

@@ -8,7 +8,8 @@
* buildArgs: {
* chineseVersion?: boolean,
* wegameVersion?: boolean,
* steamDemo?: boolean
* steamDemo?: boolean,
* gogVersion?: boolean
* }}>}
*/
const BUILD_VARIANTS = {
@@ -62,5 +63,12 @@ const BUILD_VARIANTS = {
wegameVersion: true,
},
},
"standalone-gog": {
standalone: true,
electronBaseDir: "electron_gog",
buildArgs: {
gogVersion: true,
},
},
};
module.exports = { BUILD_VARIANTS };