From 391d4e1996a5b2e6bdf35688fd9ec6eb316b422e Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Mon, 12 Apr 2021 14:39:00 -0700 Subject: [PATCH] created batch script for windows compilation --- build/build-CLI.bat | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 build/build-CLI.bat diff --git a/build/build-CLI.bat b/build/build-CLI.bat new file mode 100644 index 0000000..77790bb --- /dev/null +++ b/build/build-CLI.bat @@ -0,0 +1,5 @@ +set pathtospec="../src/superscript.spec" +set pathtodist="../dist/" +set pathtowork="/temp/" + +pyinstaller --onefile --clean --distpath %pathtodist% --workpath %pathtowork% %pathtospec% \ No newline at end of file