Build UNIX & Windows cursor

This commit is contained in:
ful1e5 2021-01-27 17:16:52 +05:30
parent 37d0dfca4d
commit 1b4fdce0b5
6 changed files with 285 additions and 7 deletions

View file

@ -1,6 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from applbuild.generator import build
from pathlib import Path
build()
from applbuild.generator import xbuild
bitmaps_dir = Path("../pngs")
x_out_dir = Path("../themes") / "macOSBigSur"
xbuild(bitmaps_dir, x_out_dir)