# HG changeset patch # User Adam Stark # Date 1449701885 0 # Node ID db22205f8ffa5f122949940e4e8dfc910de067bf # Parent ce802aba0a6aac1368a33d8dec06806797f5e202 Updated python module build settings and gitignore diff -r ce802aba0a6a -r db22205f8ffa .gitignore --- a/.gitignore Tue Nov 25 23:00:13 2014 +0000 +++ b/.gitignore Wed Dec 09 22:58:05 2015 +0000 @@ -8,4 +8,5 @@ *.xcworkspace -modules-and-plug-ins/max-external/build \ No newline at end of file +modules-and-plug-ins/max-external/build +modules-and-plug-ins/python-module/build \ No newline at end of file diff -r ce802aba0a6a -r db22205f8ffa modules-and-plug-ins/python-module/setup.py --- a/modules-and-plug-ins/python-module/setup.py Tue Nov 25 23:00:13 2014 +0000 +++ b/modules-and-plug-ins/python-module/setup.py Wed Dec 09 22:58:05 2015 +0000 @@ -12,5 +12,5 @@ setup( name = 'BTrack', include_dirs = include_dirs, - ext_modules = [Extension(name, sources,libraries = ['fftw3','samplerate'])] + ext_modules = [Extension(name, sources,libraries = ['fftw3','samplerate'],library_dirs = ['/usr/local/lib'])] ) \ No newline at end of file