Changeset 32 for 04/bugfix/setup-ext.py
- Timestamp:
- 02/07/04 18:06:17 (5 years ago)
- Files:
-
- 1 modified
-
04/bugfix/setup-ext.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
04/bugfix/setup-ext.py
r26 r32 5 5 matchCext = Extension('matchC', sources=['matchC.cc'], libraries=['stdc++'], 6 6 library_dirs=['/usr/lib']) 7 8 setup(name = 'matchC', ext_modules = [ matchCext])7 sgfparserCext = Extension('sgfparserC', sources=['sgfparserC.cc'], libraries=['stdc++'], 8 library_dirs=['/usr/lib']) 9 9 10 11 setup(name = 'matchC', ext_modules = [ matchCext ]) 12 setup(name = 'sgfparserC', ext_modules = [ sgfparserCext ]) 13
