2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 17:52:17 +00:00
Files
python/SConstruct

16 lines
419 B
Python

# -*- python -*-
setupOptions, makeEnvironment, setupTargets, checks = SConscript("SConscript")
setupOptions()
env = makeEnvironment()
env.AppendUnique(CPPPATH="#.")
if not GetOption("help") and not GetOption("clean"):
config = env.Configure(custom_tests=checks)
if not (config.CheckPython() and config.CheckNumPy() and config.CheckBoostPython()):
Exit(1)
env = config.Finish()
setupTargets(env)