Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > media > contrib-backports > by-pkgid > 5449138d6297d4beefc46ffe46a8c51a > files > 218

waf-1.5.11-1mdv2009.1.noarch.rpm

#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2006 (ita)

obj = bld(features='cs')
obj.source='''
Simple.cs
'''
obj.includes='.'
obj.flags  = '-pkg:gtk-sharp-2.0'
#obj.uselib = 'GTK GNOME GNOMEUI'

# tell waf that we're generating an EXE (which is the default).
# the other popular option would be 'library' if you want a DLL.
obj.type = 'exe'

obj.target = 'mono-hello.exe'

# NOTES
# obj.uselib should work, yet it seems useless
# just make a bug report if you need improvements