Updated build.py to always recompile meta.c

This commit is contained in:
Kyler Olsen 2025-11-29 13:34:34 -07:00
parent bfeb4c6444
commit 9e0675cecc
1 changed files with 2 additions and 0 deletions

View File

@ -84,6 +84,8 @@ def run(cmd):
def is_up_to_date(src, obj, dep):
if "meta" in [src.stem, obj.stem, dep.stem]:
return False
if not obj.exists():
return False
if dep.exists() and dep.stat().st_mtime > obj.stat().st_mtime: