Changeset 164980f


Ignore:
Timestamp:
Mar 4, 2013, 8:46:56 PM (11 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
49505f7
Parents:
7a6521d
Message:

python/: move source files to ext/

Location:
python
Files:
2 edited
9 moved

Legend:

Unmodified
Added
Removed
  • python/gen_pyobject.py

    r7a6521d r164980f  
    173173
    174174// WARNING: if you haven't read the first line yet, please do so
    175 #include "aubiowraphell.h"
     175#include "ext/aubiowraphell.h"
    176176
    177177typedef struct
  • python/setup.py

    r7a6521d r164980f  
    1818include_dirs = filter (lambda x: os.path.isdir(x), include_dirs)
    1919
    20 aubio_extension = Extension("aubio._aubio",
    21         ["aubiomodule.c",
    22             "aubioproxy.c",
    23             "py-cvec.c",
     20aubio_extension = Extension("aubio._aubio", [
     21            "ext/aubiomodule.c",
     22            "ext/aubioproxy.c",
     23            "ext/ufuncs.c",
     24            "ext/py-cvec.c",
    2425            # example without macro
    25             "py-filter.c",
     26            "ext/py-filter.c",
    2627            # macroised
    27             "py-filterbank.c",
    28             "py-fft.c",
    29             "py-phasevoc.c",
     28            "ext/py-filterbank.c",
     29            "ext/py-fft.c",
     30            "ext/py-phasevoc.c",
    3031            # generated files
    3132            ] + generate_object_files(),
Note: See TracChangeset for help on using the changeset viewer.