flipperzero-firmware/scripts/fbt_tools/python3.py

14 lines
259 B
Python
Raw Normal View History

def generate(env):
py_name = "python3"
if env["PLATFORM"] == "win32":
# On Windows, Python 3 executable is usually just "python"
py_name = "python"
env.SetDefault(
PYTHON3=py_name,
)
def exists(env):
return True