mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-21 10:45:23 -04:00
🧰 updated
This commit is contained in:
parent
174c76f618
commit
f6d3f6c743
1 changed files with 10 additions and 3 deletions
|
@ -4,18 +4,25 @@ all: setup build
|
|||
.ONESHELL:
|
||||
SHELL:=/bin/bash
|
||||
|
||||
bitmaps_dir = "../bitmaps"
|
||||
|
||||
X_SIZES ?=22 24 28 32 40 48 56 64 72 80 88 96
|
||||
WIN_CANVAS_SIZE ?= 32
|
||||
WIN_SIZE ?= 24
|
||||
|
||||
THEMES = White
|
||||
|
||||
setup:
|
||||
@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)
|
||||
@python3 build.py -p "$(bitmaps_dir)/macOSBigSur" --xsizes $(X_SIZES) --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)
|
||||
@$(foreach theme,$(THEMES), python3 build.py -p "$(bitmaps_dir)/macOSBigSur-$(theme)" --xsizes $(X_SIZES) --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE);)
|
||||
|
||||
build_unix: setup build.py
|
||||
@python3 build.py unix --xsizes $(X_SIZES)
|
||||
@python3 build.py unix -p "$(bitmaps_dir)/macOSBigSur" --xsizes $(X_SIZES)
|
||||
@$(foreach theme,$(THEMES), python3 build.py unix -p "$(bitmaps_dir)/macOSBigSur-$(theme)" --xsizes $(X_SIZES);)
|
||||
|
||||
build_windows: setup build.py
|
||||
@python3 build.py windows --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)
|
||||
@python3 build.py windows -p "$(bitmaps_dir)/macOSBigSur" --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE)
|
||||
@$(foreach theme,$(THEMES), python3 build.py windows -p "$(bitmaps_dir)/macOSBigSur-$(theme)" --win-size $(WIN_SIZE) --win-canvas-size $(WIN_CANVAS_SIZE);)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue