📦 cursor builder package renamed applbuild -> src

This commit is contained in:
ful1e5 2021-08-13 14:41:26 +05:30
parent db1357fdc7
commit 8e70c271ce
7 changed files with 3 additions and 8 deletions

View file

@ -8,13 +8,8 @@ X_SIZES ?=22 24 28 32 40 48 56 64 72 80 88 96
WIN_CANVAS_SIZE ?= 32
WIN_SIZE ?= 24
clean:
@python3 -m pip uninstall -y clickgen
@find -iname "*.pyc" -delete
@rm -rf applbuild/__pycache__
setup: clean
@python3 -m pip install clickgen==1.1.9 --user
@python3 -m pip install clickgen --user
build: setup build.py
@python3 build.py --xsizes $(X_SIZES) --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)

View file

@ -4,8 +4,8 @@
import argparse
from pathlib import Path
from applbuild.configure import get_config
from applbuild.generator import build, wbuild, xbuild
from src.configure import get_config
from src.generator import build, wbuild, xbuild
parser = argparse.ArgumentParser(
prog="apple_builder",