1 Star 0 Fork 5

超级小星星/ESP32C3-JDI-LCD-LVGL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
extra_script.py 975 Bytes
一键复制 编辑 原始数据 按行查看 历史
甘草酸不酸 提交于 2024-05-07 22:47 . 上传项目文件
import os
Import("env")
print(">>> Current CLI targets", COMMAND_LINE_TARGETS)
print(">>> Current Build targets", BUILD_TARGETS)
# print(env.Dump())
# host = env.GetProjectOption("custom_ping_host")
def before_buildfs(source, target, env):
print("\n>>> before_buildfs: build-www")
env.Execute("ruby shared/build-www.rb")
print("\n>>> before_buildfs: copy assets")
env.Execute("rsync --delete -av shared/assets/ data/assets/")
print("\n>>> before_buildfs: gzip assets")
env.Execute("find data/ -type f \( -name \*.css -o -name \*.js -o -name \*.html \) -exec gzip -f \"{}\" \;")
print("\n>>> before_buildfs: total size")
env.Execute("du -sh data")
env.Execute("du -sh data/*")
env.AddPreAction("buildfs", before_buildfs)
def after_buildfs(source, target, env):
print("\n>>> after_buildfs: unzip assets")
# env.Execute("find data/ -type f -name *.gz -exec gunzip -f \"{}\" \;")
env.AddPostAction("buildfs", after_buildfs)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/cancha/ESP32C3-JDI-LCD-LVGL.git
[email protected]:cancha/ESP32C3-JDI-LCD-LVGL.git
cancha
ESP32C3-JDI-LCD-LVGL
ESP32C3-JDI-LCD-LVGL
main

搜索帮助