I’m just wondering why this doesn’t work. If I call these in steps in my command window in Windows it works. I’m wondering if maybe it’s an administrator issue? Is it possible to call commands as administrator?
import os
cmd = """
cd build
emcmake cmake ..
cmake --build .
"""
os.system(cmd)