Skip to content

Instantly share code, notes, and snippets.

@m5knt
Last active February 1, 2017 07:19
Show Gist options
  • Save m5knt/82b4e41b1aae461ac13f1a344cf1ac90 to your computer and use it in GitHub Desktop.
Save m5knt/82b4e41b1aae461ac13f1a344cf1ac90 to your computer and use it in GitHub Desktop.
Scons 実行時 に vcvars を明示している方法
import os
env = Environment(ENV = {
'PATH' : os.environ['PATH']
},
MSVC_USE_SCRIPT = os.path.join(
os.environ['VCFORPYTHON'],
'vcvarsall.bat')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment