Files
EMS-ESP32/scripts/run_native.py
2024-05-26 16:06:18 +02:00

12 lines
163 B
Python

import os
Import("env")
def run_native():
print("Running native...")
os.system("pio run -e native")
if not (env.IsCleanTarget()):
run_native()