Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup.py - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecf4c94c094cd98ecd48b2eb664f40c82125fa33 (plain)
1
2
3
4
5
6
7
8
9
10
11
from distutils.core import setup, Extension

module1 = Extension( 'idle',
		     sources = ['common/idle.cpp'],
#                     extra_compile_args = ['-W'],
                     libraries = ['gtk-x11-2.0','gdk-x11-2.0','glib-2.0','X11','Xext','Xss','atk-1.0'],
                     library_dirs = ['/usr/X11R6/lib'],
                     include_dirs = ['/usr/include/gtk-2.0', '/usr/include/glib-2.0','/usr/lib/gtk-2.0/include','/usr/lib/glib-2.0/include','/usr/include/pango-1.0','/usr/include/atk-1.0']
		   )

setup (name = 'idle', version = '1.0', description = 'interface to X11/scrnserver.h', ext_modules = [module1])