- Timestamp:
- Sep 26, 2011, 8:21:00 AM (13 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 2a6e672
- Parents:
- 20ae690
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r20ae690 r46378b3 1 1 # build libaubio 2 2 libaubio = bld.new_task_gen( 3 features = 'c ccshlib',3 features = 'c cshlib', 4 4 includes = ['.'], 5 5 source = bld.path.ant_glob('*.c **/*.c'), … … 9 9 10 10 # install headers, except _priv.h ones 11 for file in bld.path.ant_glob('**/*.h').split(): 12 if '_priv.h' in file or file == 'config.h': continue 13 bld.install_as('${PREFIX}/include/aubio/' + file, file) 11 bld.install_files('${PREFIX}/include/aubio/', 12 bld.path.ant_glob('**/*.h', 13 exclude = ['_priv.h', 'config.h']), 14 relative_trick=True)
Note: See TracChangeset
for help on using the changeset viewer.