From 279a060265d9cac9762a4b2c8cf250822b63f74e Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 28 May 2004 04:20:30 +0000 Subject: - idle in a C module, auto away / xa feature is back - no need to store .mo files : they are now created by make --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..ecf4c94c0 --- /dev/null +++ b/setup.py @@ -0,0 +1,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]) -- cgit v1.2.3