apple_cursor/builder/build.py
2021-01-29 18:16:28 +05:30

13 lines
No EOL
316 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pathlib import Path
from applbuild.generator import xbuild, wbuild
bitmaps_dir = Path("../pngs")
x_out_dir = Path("../themes") / "macOSBigSur"
win_out_dir = Path("../themes") / "macOSBigSur-Windows"
xbuild(bitmaps_dir, x_out_dir)
wbuild(bitmaps_dir,win_out_dir)