Skip to content

Commit

Permalink
Updates for 2.10.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitBM committed Jun 28, 2024
1 parent e270300 commit 4767cf1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
2 changes: 1 addition & 1 deletion build/dependency_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@
"device_info" : ["../external/device_info", "c374c2b328bea66a92db6e49f6b32607f97b3e2c"],
"update_check_api" : ["../external/update_check_api", "v2.1.1"],
# QtCommon.
"qt_common" : ["../external/QtCommon", "6377814493f6e5c97fd5c44fccdd22767bf86355"],
"qt_common" : ["../external/qt_common", "6377814493f6e5c97fd5c44fccdd22767bf86355"],
}
18 changes: 0 additions & 18 deletions build/pre_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
import subprocess
import platform
import time
# START_REMOVE_DURING_SANITIZATION
import fetch_qt
# END_REMOVE_DURING_SANITIZATION

# prevent generation of .pyc file
sys.dont_write_bytecode = True
Expand Down Expand Up @@ -210,15 +207,6 @@ def generate_config(config, args):
qt_expanded_root = os.path.expanduser(args.qt_root)
qt_found,qt_path = check_qt_path(qt_expanded_root, args.qt_root, args.qt)

# START_REMOVE_DURING_SANITIZATION
if qt_found == False:
# Call fetch_qt script
log_print ("Fetching Qt...\n")
target_qt_dir = qt_expanded_root
fetch_qt.do_fetch_qt(target_qt_dir)
qt_found,qt_path = check_qt_path(qt_expanded_root, args.qt_root, args.qt)
# END_REMOVE_DURING_SANITIZATION

if qt_found == False:
log_error_and_exit(qt_path)

Expand All @@ -240,12 +228,6 @@ def generate_config(config, args):
elif args.toolchain == "2017":
cmake_args.extend(["-Tv141"])

# START_REMOVE_DURING_SANITIZATION
if args.internal:
cmake_args.extend(["-DINTERNAL_BUILD:BOOL=TRUE"])
if args.automation:
cmake_args.extend(["-DGUI_AUTOMATION=ON"])
# END_REMOVE_DURING_SANITIZATION

# Use build number.
cmake_args.extend(["-DRGA_BUILD_NUMBER=" + str(args.build_number)])
Expand Down

0 comments on commit 4767cf1

Please sign in to comment.