Skip to content

Commit

Permalink
BuildMacOSUniversalBinary: Remove flag for creating a Steam build
Browse files Browse the repository at this point in the history
  • Loading branch information
OatmealDome committed Aug 15, 2024
1 parent c28fd44 commit afde1dc
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions BuildMacOSUniversalBinary.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@

"run_unit_tests": False,

# Whether we should make a build for Steam.
"steam": False,

# Whether our autoupdate functionality is enabled or not.
"autoupdate": True,

Expand Down Expand Up @@ -120,12 +117,6 @@ def parse_args(conf=DEFAULT_CONFIG):
parser.add_argument("--run_unit_tests", action="store_true",
default=conf["run_unit_tests"])

parser.add_argument(
"--steam",
help="Create a build for Steam",
action="store_true",
default=conf["steam"])

parser.add_argument(
"--autoupdate",
help="Enables our autoupdate functionality",
Expand Down Expand Up @@ -311,8 +302,6 @@ def build(config):
"-DMACOS_CODE_SIGNING_IDENTITY="
+ config["codesign_identity"],
'-DMACOS_CODE_SIGNING="ON"',
"-DSTEAM="
+ python_to_cmake_bool(config["steam"]),
"-DENABLE_AUTOUPDATE="
+ python_to_cmake_bool(config["autoupdate"]),
'-DDISTRIBUTOR=' + config['distributor'],
Expand Down

0 comments on commit afde1dc

Please sign in to comment.