From 4911198e0e84aca58ca2fbe468415e6e98928e48 Mon Sep 17 00:00:00 2001 From: Blaine Date: Sat, 20 Jun 2020 03:09:27 +0530 Subject: create build script --- build.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 build.py diff --git a/build.py b/build.py new file mode 100644 index 0000000..9b5a543 --- /dev/null +++ b/build.py @@ -0,0 +1,13 @@ +from fbs.cmdline import command +from os.path import dirname +import subprocess + +import fbs.cmdline + +@command +def compileResources(): + subprocess.call("pyrcc5 -o src/main/python/resources/resources.py src/main/ui/resources.rcc", shell=True) + +if __name__ == '__main__': + project_dir = dirname(__file__) + fbs.cmdline.main(project_dir) \ No newline at end of file -- cgit