mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
BuildMacOSUniversalBinary: Remove flag for creating a Steam build
This commit is contained in:
parent
c28fd445d7
commit
afde1dcfe2
@ -70,9 +70,6 @@ DEFAULT_CONFIG = {
|
|||||||
|
|
||||||
"run_unit_tests": False,
|
"run_unit_tests": False,
|
||||||
|
|
||||||
# Whether we should make a build for Steam.
|
|
||||||
"steam": False,
|
|
||||||
|
|
||||||
# Whether our autoupdate functionality is enabled or not.
|
# Whether our autoupdate functionality is enabled or not.
|
||||||
"autoupdate": True,
|
"autoupdate": True,
|
||||||
|
|
||||||
@ -120,12 +117,6 @@ def parse_args(conf=DEFAULT_CONFIG):
|
|||||||
parser.add_argument("--run_unit_tests", action="store_true",
|
parser.add_argument("--run_unit_tests", action="store_true",
|
||||||
default=conf["run_unit_tests"])
|
default=conf["run_unit_tests"])
|
||||||
|
|
||||||
parser.add_argument(
|
|
||||||
"--steam",
|
|
||||||
help="Create a build for Steam",
|
|
||||||
action="store_true",
|
|
||||||
default=conf["steam"])
|
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--autoupdate",
|
"--autoupdate",
|
||||||
help="Enables our autoupdate functionality",
|
help="Enables our autoupdate functionality",
|
||||||
@ -311,8 +302,6 @@ def build(config):
|
|||||||
"-DMACOS_CODE_SIGNING_IDENTITY="
|
"-DMACOS_CODE_SIGNING_IDENTITY="
|
||||||
+ config["codesign_identity"],
|
+ config["codesign_identity"],
|
||||||
'-DMACOS_CODE_SIGNING="ON"',
|
'-DMACOS_CODE_SIGNING="ON"',
|
||||||
"-DSTEAM="
|
|
||||||
+ python_to_cmake_bool(config["steam"]),
|
|
||||||
"-DENABLE_AUTOUPDATE="
|
"-DENABLE_AUTOUPDATE="
|
||||||
+ python_to_cmake_bool(config["autoupdate"]),
|
+ python_to_cmake_bool(config["autoupdate"]),
|
||||||
'-DDISTRIBUTOR=' + config['distributor'],
|
'-DDISTRIBUTOR=' + config['distributor'],
|
||||||
|
Loading…
Reference in New Issue
Block a user