root/branches/gajim_0.2-1/setup.py

Revision 161, 0.6 kB (checked in by asterix, 4 years ago)

idle is a C module, not a C++ one

Line 
1from distutils.core import setup, Extension
2
3module1 = Extension( 'idle',
4                     sources = ['common/idle.c'],
5#                     extra_compile_args = ['-W'],
6                     libraries = ['gtk-x11-2.0','gdk-x11-2.0','glib-2.0','X11','Xext','Xss','atk-1.0'],
7                     library_dirs = ['/usr/X11R6/lib'],
8                     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']
9                   )
10
11setup (name = 'idle', version = '1.0', description = 'interface to X11/scrnserver.h', ext_modules = [module1])
Note: See TracBrowser for help on using the browser.