Skip to content
Snippets Groups Projects
Commit fa732273 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

project: fix windows build script

jami-client-qt#601

Change-Id: Ia0faab2f07c11b0bac14098aa73a75bf2c41d979
parent 95a6fe01
Branches
Tags
No related merge requests found
...@@ -24,14 +24,13 @@ def build_daemon(parsed_args): ...@@ -24,14 +24,13 @@ def build_daemon(parsed_args):
def build_lrc(parsed_args): def build_lrc(parsed_args):
make_cmd = os.path.dirname(this_dir) + '\\lrc\\make-lrc.py' make_cmd = os.path.dirname(this_dir) + '\\lrc\\make-lrc.py'
execute_cmd('python ' + make_cmd + ' -gb ' + ' -t ' + parsed_args.toolset + ' -s ' + parsed_args.sdk + ' -q ' + parsed_args.qtver) execute_cmd('python ' + make_cmd + ' -q ' + parsed_args.qtver)
def build_client(parsed_args): def build_client(parsed_args):
os.chdir('./client-qt') os.chdir('./client-qt')
execute_cmd('python make-client.py -d') execute_cmd('python make-client.py init')
execute_cmd('python make-client.py -b ' + '-t ' + execute_cmd('python make-client.py' + ' -q ' + parsed_args.qtver)
parsed_args.toolset + ' -s ' + parsed_args.sdk + ' -q ' + parsed_args.qtver)
def parse_args(): def parse_args():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment