mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
9 lines
274 B
Python
9 lines
274 B
Python
#!/usr/bin/python
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
m = Extension('linphone',
|
|
include_dirs = ['/home/ghislain/linphone-install/include'],
|
|
sources = ['linphone.c']
|
|
)
|
|
setup(name = 'Linphone', version = '1.0', description = 'Linphone package', ext_modules = [m])
|