Skip to content

Commit

Permalink
806 Add PL flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kladkogex committed Feb 24, 2025
1 parent 33e8717 commit b7d0a03
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@ def main():
parser = argparse.ArgumentParser(description="Example script for argument parsing")
parser.add_argument("buildType", type=str, help="Build type (release, debug)")
parser.add_argument("-buildPl", action = "store_true", help="Build PL")
args = parser.parse_args()

os.chdir("..")
print("Starting build")
buildType = sys.buildType
buildType = args.buildType
print("BUILD_TYPE=" + buildType)

buildPL = sys.buildPl;
buildPL = args.buildPl
print("buildPl=" + buildPL)

run("ccache -M 20G")
run("mkdir -p build")
Expand Down

0 comments on commit b7d0a03

Please sign in to comment.