- Timestamp:
- Nov 28, 2016, 3:48:34 PM (8 years ago)
- Branches:
- sampler
- Children:
- 3303f05
- Parents:
- f4d7240
- Location:
- python/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/gen_external.py
rf4d7240 rac971a51 176 176 def generate_external(header=header, output_path=output_path, usedouble=False, overwrite=True): 177 177 if not os.path.isdir(output_path): os.mkdir(output_path) 178 elif not overwrite: return glob.glob(os.path.join(output_path, '*.c'))178 elif not overwrite: return sorted(glob.glob(os.path.join(output_path, '*.c'))) 179 179 180 180 cpp_output, cpp_objects = get_cpp_objects(header) -
python/lib/moresetuptools.py
rf4d7240 rac971a51 59 59 fake_config_header = os.path.join('python', 'ext', 'config.h') 60 60 distutils.file_util.write_file(fake_config_header, "") 61 aubio_sources = glob.glob(os.path.join('src', '**.c'))62 aubio_sources += glob.glob(os.path.join('src', '*', '**.c'))61 aubio_sources = sorted(glob.glob(os.path.join('src', '**.c'))) 62 aubio_sources += sorted(glob.glob(os.path.join('src', '*', '**.c'))) 63 63 ext.sources += aubio_sources 64 64 # define macros (waf puts them in build/src/config.h)
Note: See TracChangeset
for help on using the changeset viewer.