Changeset de2a8af
- Timestamp:
- Oct 30, 2007, 3:00:22 AM (17 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:
- 71d9f52
- Parents:
- 97525e4
- Files:
-
- 2 added
- 1 deleted
- 2 edited
- 37 moved
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r97525e4 rde2a8af 241 241 ext/Makefile 242 242 examples/Makefile 243 examples/tests/Makefile 243 tests/Makefile 244 tests/src/Makefile 244 245 sounds/Makefile 245 246 swig/Makefile -
examples/Makefile.am
r97525e4 rde2a8af 1 if COMPILE_TESTS2 SUBDIRS = tests3 endif4 5 1 # global flags 6 2 AM_CFLAGS = -DAUBIO_PREFIX=\"$(prefix)\" -I$(top_srcdir)/src -I$(top_srcdir)/ext @AUBIO_CFLAGS@ @LASH_CFLAGS@ @FFTWLIB_CFLAGS@ -
tests/python/run_all_tests
r97525e4 rde2a8af 4 4 # so the script is runnable from a compiled source tree. 5 5 import sys, os 6 sys.path.append('..') 7 sys.path.append(os.path.join('..','aubio','.libs')) 6 7 cur_dir = os.path.dirname(sys.argv[0]) 8 sys.path.append(os.path.join(cur_dir,'..','..','python')) 9 sys.path.append(os.path.join(cur_dir,'..','..','python','aubio','.libs')) 8 10 9 11 import unittest
Note: See TracChangeset
for help on using the changeset viewer.