Project File Refactor (#241)

* Project file refactor, content edition

* Update submodule
This commit is contained in:
Pieter-Jan Briers
2019-05-28 00:18:29 +02:00
committed by GitHub
parent 241aa353e9
commit 996b45a04f
14 changed files with 130 additions and 935 deletions

View File

@@ -101,7 +101,8 @@ def build_windows():
"/nologo",
"/v:m",
"/p:TargetOS=Windows",
"/t:Rebuild"
"/t:Rebuild",
"/p:FullRelease=True"
], check=True)
print(Fore.GREEN + "Packaging Windows x64 client..." + Style.RESET_ALL)
@@ -135,7 +136,8 @@ def build_macos():
"/nologo",
"/v:m",
"/p:TargetOS=MacOS",
"/t:Rebuild"
"/t:Rebuild",
"/p:FullRelease=True"
], check=True)
print(Fore.GREEN + "Packaging macOS x64 client..." + Style.RESET_ALL)
@@ -171,7 +173,8 @@ def build_linux():
"/nologo",
"/v:m",
"/p:TargetOS=Linux",
"/t:Rebuild"
"/t:Rebuild",
"/p:FullRelease=True"
], check=True)
print(Fore.GREEN + "Packaging Linux x64 client..." + Style.RESET_ALL)