Changeset 7 for 05/bugfix/setup-ext.py
- Timestamp:
- 02/06/04 21:28:18 (5 years ago)
- Files:
-
- 05/bugfix/setup-ext.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
05/bugfix/setup-ext.py
r1 r7 3 3 from distutils.core import setup, Extension 4 4 5 matchCext = Extension('matchC', sources=['matchC.cc']) 6 sgfparsCext = Extension('_sgfpars', sources = ['sgfpars.cc', 'sgfpars_wrap.cxx']) 5 matchCext = Extension('matchC', sources=['matchC.cc'], libraries=['stdc++'], 6 library_dirs=['/usr/lib']) 7 sgfparsCext = Extension('_sgfpars', sources = ['sgfpars.cc', 'sgfpars_wrap.cxx'], libraries=['stdc++'], 8 library_dirs=['/usr/lib']) 7 9 8 10 setup(name = 'matchC', ext_modules = [ matchCext ])
