Skip to content
Snippets Groups Projects
Commit 0e270bad authored by Ming Rui Zhang's avatar Ming Rui Zhang
Browse files

msvc: change the path of winmake.py

Change-Id: Id10222ec089ff6698004b218468e07c1977e0cf7
parent 3ef82ac5
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,11 @@ def execute_cmd(cmd, with_shell=False):
def build_daemon(parsed_args):
make_cmd = os.path.dirname(this_dir) + '\\daemon\\msvc\\winmake.py'
return execute_cmd('python ' + make_cmd + ' -iv -t ' + parsed_args.toolset + ' -s ' + parsed_args.sdk + ' -b daemon')
make_cmd = os.path.dirname(this_dir) + '\\daemon\\src\\compat\\msvc\\winmake.py'
os.chdir(os.path.dirname(this_dir) + '\\daemon\\src\\compat\\msvc')
status_code = execute_cmd('python ' + make_cmd + ' -iv -t ' + parsed_args.toolset + ' -s ' + parsed_args.sdk + ' -b daemon')
os.chdir(os.path.dirname(this_dir))
return status_code
def build_lrc(parsed_args):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment