You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
342 B
19 lines
342 B
.PHONY: nuitka clean env
|
|
|
|
#export CCFLAGS += -O1
|
|
#export CXXFLAGS += -O1
|
|
|
|
nuitka:
|
|
poetry install
|
|
poetry run python -m nuitka --standalone --onefile \
|
|
--enable-plugin=pyside6 \
|
|
--disable-plugin=anti-bloat \
|
|
--include-package=charset_normalizer \
|
|
--output-dir=build/nuitka timebot/app.py
|
|
|
|
env:
|
|
env
|
|
|
|
clean:
|
|
rm -rf dist
|
|
rm -rf build
|
|
|