You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: build/pre_build.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
#! python3
2
-
# Copyright (c) 2020-2022 Advanced Micro Devices, Inc. All rights reserved.
2
+
# Copyright (c) 2020-2023 Advanced Micro Devices, Inc. All rights reserved.
3
3
#
4
4
# Script to perform all necessary pre build steps. This includes:
5
5
#
@@ -49,8 +49,8 @@
49
49
# parse the command line arguments
50
50
parser=argparse.ArgumentParser(description="A script that generates all the necessary build dependencies for a project")
51
51
ifsys.platform=="win32":
52
-
parser.add_argument("--vs", default="2019", choices=["2017", "2019", "2022"], help="specify the version of Visual Studio to be used with this script (default: 2019)")
53
-
parser.add_argument("--toolchain", default="2019", choices=["2017", "2019", "2022"], help="specify the compiler toolchain to be used with this script (default: 2019)")
52
+
parser.add_argument("--vs", default="2022", choices=["2017", "2019", "2022"], help="specify the version of Visual Studio to be used with this script (default: 2022)")
53
+
parser.add_argument("--toolchain", default="2022", choices=["2017", "2019", "2022"], help="specify the compiler toolchain to be used with this script (default: 2022)")
54
54
parser.add_argument("--qt-root", default="C:\\Qt", help="specify the root directory for locating QT on this system (default: C:\\Qt\\)")
55
55
parser.add_argument("--qt-libver", default="2019", choices=["2017", "2019"], help="specify the Qt lib version to be used with this script (default: 2019)")
0 commit comments