source: vanHelsing/trunk/setup.py

Last change on this file 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
Line 
1'''
2Created on 17.06.2009
3
4@author: hmueller
5'''
6from distutils.core import setup, Extension
7
8module1 = Extension('clibbac',
9 sources = ['clib/clibbac.cxx'],
10 include_dirs = ['bacula_repo/src/'],
11 libraries = ['crypto', 'ssl', 'bac'],
12 library_dirs = ['build/lib/'],
13 runtime_library_dirs = ['build/lib/'],
14 )
15
16setup (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.