py_to_uxf/cpl-workspace.json

20 lines
1.2 KiB
JSON
Raw Normal View History

2022-01-15 23:32:39 +01:00
{
"WorkspaceSettings": {
"DefaultProject": "py_to_uxf",
"Projects": {
2022-01-16 00:18:12 +01:00
"py_to_uxf": "src/py_to_uxf/py_to_uxf.json",
"py_to_uxf_core": "src/py_to_uxf_core/py_to_uxf_core.json"
2022-01-15 23:32:39 +01:00
},
2022-01-16 00:02:27 +01:00
"Scripts": {
2022-01-16 13:45:01 +01:00
"build-start": "cpl build; cd dist/py_to_uxf/build/py_to_uxf; echo \"Starting:\"; bash py_to_uxf -p ./ -o uml.uxf",
"build-start-test": "cpl build; cd dist/py_to_uxf/build/py_to_uxf; echo \"Starting:\"; bash py_to_uxf -p ../../../../sh_gismo/src -o gismo.uxf",
2022-01-19 16:43:03 +01:00
"compile": "cd src/; pyinstaller --specpath ../dist/cspec --workpath ../dist/cbuild --distpath ../dist/cdist --add-data ../../src/py_to_uxf/appsettings.json:. --hidden-import pynput.keyboard._xorg --hidden-import pynput.mouse._xorg --hidden-import pyfiglet.fonts --collect-data pyfiglet -n py_to_uxf -y py_to_uxf/main.py; cd ../;",
"compile-start": "cpl compile; cd dist/cdist/py_to_uxf; echo \"Starting:\"; ./py_to_uxf -p ../../../src -o uml.uxf; cd ../../../",
"compile-start-test": "cpl compile; cd dist/cdist/py_to_uxf; echo \"Starting:\"; ./py_to_uxf -p ../../../../sh_gismo/src -o gismo.uxf; cd ../../../",
"bs": "cpl build-start",
2022-01-19 16:43:03 +01:00
"bst": "cpl build-start-test",
"cs": "cpl compile-start",
"cst": "cpl compile-start-test"
2022-01-16 00:02:27 +01:00
}
2022-01-15 23:32:39 +01:00
}
}