Last change
on this file since 1250 was 773, checked in by hmueller, on Jul 3, 2009 at 5:19:08 PM |
Clibbac now uses Python memory management
|
-
Property svn:keywords
set to
Id
-
Property svn:mime-type
set to
text/x-python
|
File size:
557 bytes
|
Rev | Line | |
---|
[772] | 1 | '''
|
---|
| 2 | Created on 17.06.2009
|
---|
| 3 |
|
---|
| 4 | @author: hmueller
|
---|
| 5 | '''
|
---|
| 6 | from distutils.core import setup, Extension
|
---|
| 7 |
|
---|
| 8 | module1 = Extension('clibbac',
|
---|
| 9 | sources = ['clib/clibbac.cxx'],
|
---|
| 10 | include_dirs = ['bacula_repo/src/'],
|
---|
| 11 | libraries = ['crypto', 'ssl', 'bac'],
|
---|
[773] | 12 | library_dirs = ['build/lib/'],
|
---|
| 13 | runtime_library_dirs = ['build/lib/'],
|
---|
[772] | 14 | )
|
---|
| 15 |
|
---|
| 16 | setup (name = 'cLibbac',
|
---|
| 17 | version = '1.0',
|
---|
| 18 | description = 'This is the libbac package',
|
---|
| 19 | ext_modules = [module1])
|
---|
Note:
See
TracBrowser
for help on using the repository browser.