root/06/devel-old/setup-algos.py

Revision 174, 281 bytes (checked in by ug, 2 years ago)

Worked some more on pattern.cc ... not done yet, though.

Line 
1 import sys
2 from distutils.core import setup, Extension
3  
4 algosext = Extension('_algos', sources = ['algos.cc', 'algos.cxx'],
5                              libraries=['stdc++'], library_dirs=['/usr/lib'])
6                            
7 setup(name = 'algos', ext_modules = [ algosext ])
Note: See TracBrowser for help on using the browser.