SConstruct (13541:a23fca6305e1) | SConstruct (13577:70ab75eec40b) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2013, 2015-2017 ARM Limited 4# All rights reserved. 5# 6# The license below extends only to copyright in the software and shall 7# not be construed as granting a license to any other intellectual 8# property including but not limited to intellectual property relating --- 1068 unchanged lines hidden (view full) --- 1077ext_build_dirs = [] 1078for root, dirs, files in os.walk(ext_dir): 1079 if 'SConscript' in files: 1080 build_dir = os.path.relpath(root, ext_dir) 1081 ext_build_dirs.append(build_dir) 1082 main.SConscript(joinpath(root, 'SConscript'), 1083 variant_dir=joinpath(build_root, build_dir)) 1084 | 1# -*- mode:python -*- 2 3# Copyright (c) 2013, 2015-2017 ARM Limited 4# All rights reserved. 5# 6# The license below extends only to copyright in the software and shall 7# not be construed as granting a license to any other intellectual 8# property including but not limited to intellectual property relating --- 1068 unchanged lines hidden (view full) --- 1077ext_build_dirs = [] 1078for root, dirs, files in os.walk(ext_dir): 1079 if 'SConscript' in files: 1080 build_dir = os.path.relpath(root, ext_dir) 1081 ext_build_dirs.append(build_dir) 1082 main.SConscript(joinpath(root, 'SConscript'), 1083 variant_dir=joinpath(build_root, build_dir)) 1084 |
1085gdb_xml_dir = joinpath(ext_dir, 'gdb-xml') 1086Export('gdb_xml_dir') 1087 |
|
1085main.Prepend(CPPPATH=Dir('ext/pybind11/include/')) 1086 1087################################################### 1088# 1089# This builder and wrapper method are used to set up a directory with 1090# switching headers. Those are headers which are in a generic location and 1091# that include more specific headers from a directory chosen at build time 1092# based on the current build settings. --- 166 unchanged lines hidden --- | 1088main.Prepend(CPPPATH=Dir('ext/pybind11/include/')) 1089 1090################################################### 1091# 1092# This builder and wrapper method are used to set up a directory with 1093# switching headers. Those are headers which are in a generic location and 1094# that include more specific headers from a directory chosen at build time 1095# based on the current build settings. --- 166 unchanged lines hidden --- |