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

scripts: remove lrc build for Windows script

- also uses the renamed build scripts for the client-qt project

Change-Id: Ic2fd45555edfe8b670b35c494be5a2d38430b4cd
parent 8ab6a8e8
No related branches found
No related tags found
No related merge requests found
......@@ -22,15 +22,10 @@ def build_daemon(parsed_args):
os.chdir(os.path.dirname(this_dir))
def build_lrc(parsed_args):
make_cmd = os.path.dirname(this_dir) + '\\lrc\\make-lrc.py'
execute_cmd('python ' + make_cmd)
def build_client(parsed_args):
os.chdir('./client-qt')
execute_cmd('python make-client.py init')
execute_cmd('python make-client.py')
execute_cmd('python build.py init')
execute_cmd('python build.py')
def parse_args():
......@@ -49,7 +44,6 @@ def parse_args():
def main():
parsed_args = parse_args()
build_daemon(parsed_args)
build_lrc(parsed_args)
build_client(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