Changeset 32

Show
Ignore:
Timestamp:
02/07/04 18:06:17 (5 years ago)
Author:
ug
Message:

Include sgfparserC in setup-ext.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 04/bugfix/setup-ext.py

    r26 r32  
    55matchCext = Extension('matchC', sources=['matchC.cc'], libraries=['stdc++'], 
    66                        library_dirs=['/usr/lib']) 
    7                            
    8 setup(name = 'matchC', ext_modules = [ matchCext ]) 
     7sgfparserCext = Extension('sgfparserC', sources=['sgfparserC.cc'], libraries=['stdc++'], 
     8                        library_dirs=['/usr/lib']) 
    99 
     10 
     11setup(name = 'matchC', ext_modules = [ matchCext ])                         
     12setup(name = 'sgfparserC', ext_modules = [ sgfparserCext ]) 
     13