From bcdfa35f867c651825c4f50f1c0fc7beb143a5a2 Mon Sep 17 00:00:00 2001 From: liukangcc Date: Thu, 23 Dec 2021 11:51:58 +0800 Subject: [PATCH] [update] windows tools --- tools/buildbot.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tools/buildbot.py b/tools/buildbot.py index 02f6e37d4f..04779071cf 100644 --- a/tools/buildbot.py +++ b/tools/buildbot.py @@ -40,9 +40,14 @@ def update_all_project_files(root_path): projects = os.listdir(root_path) # is a project path? if "SConscript" in projects: - print('new bsp path {}'.format(root_path)) try: - os.system('scons --pyconfig-silent -C {0}'.format(root_path)) # update rtconfig.h and .config + if "win32" in sys.platform: + retval = os.getcwd() + os.chdir(root_path) + os.system("menuconfig --silent") + os.chdir(retval) + else: + os.system('scons --pyconfig-silent -C {0}'.format(root_path)) # update rtconfig.h and .config update_project_file(root_path) except Exception as e: print("error message: {}".format(e))