Add support for python3 in cmake_build

This commit is contained in:
Kevin 2026-03-17 23:14:22 -07:00
parent cf70668a2f
commit 9966e183ee
No known key found for this signature in database

View File

@ -2,7 +2,7 @@ import os
import sys import sys
import shutil import shutil
assert os.system("python prebuild.py") == 0 assert os.system("python prebuild.py") == 0 or os.system("python3 prebuild.py") == 0
if not os.path.exists("build"): if not os.path.exists("build"):
os.mkdir("build") os.mkdir("build")