apple_cursor/builder/build.py
2021-01-27 17:16:52 +05:30

11 lines
221 B
Python

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