Changeset 9d3fa49
- Timestamp:
- Nov 5, 2009, 6:08:38 PM (15 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:
- 69aaefbd
- Parents:
- 8beee53
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
r8beee53 r9d3fa49 36 36 tempo/beattracking.h 37 37 38 nodist_ pkginclude_HEADERS = config.h38 nodist_noinst_HEADERS = config.h 39 39 40 40 lib_LTLIBRARIES = libaubio.la -
src/aubio.h
r8beee53 r9d3fa49 153 153 #endif 154 154 155 /* first the generated config file */156 #include "config.h"157 158 155 /* in this order */ 159 156 #include "types.h" -
src/wscript_build
r8beee53 r9d3fa49 10 10 # install headers, except _priv.h ones 11 11 for file in bld.path.ant_glob('**/*.h').split(): 12 if '_priv.h' in file : continue12 if '_priv.h' in file or file == 'config.h': continue 13 13 bld.install_as('${PREFIX}/include/aubio/' + file, file)
Note: See TracChangeset
for help on using the changeset viewer.