2011-09-10 11:13:51 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
2017-02-11 16:13:37 +01:00
|
|
|
# Thomas Nagy, 2006-2017 (ita)
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
C# support. A simple example::
|
|
|
|
|
|
|
|
def configure(conf):
|
|
|
|
conf.load('cs')
|
|
|
|
def build(bld):
|
|
|
|
bld(features='cs', source='main.cs', gen='foo')
|
|
|
|
|
|
|
|
Note that the configuration may compile C# snippets::
|
|
|
|
|
|
|
|
FRAG = '''
|
|
|
|
namespace Moo {
|
|
|
|
public class Test { public static int Main(string[] args) { return 0; } }
|
|
|
|
}'''
|
|
|
|
def configure(conf):
|
|
|
|
conf.check(features='cs', fragment=FRAG, compile_filename='test.cs', gen='test.exe',
|
2012-04-23 19:16:56 +02:00
|
|
|
bintype='exe', csflags=['-pkg:gtk-sharp-2.0'], msg='Checking for Gtksharp support')
|
2011-09-10 11:13:51 +02:00
|
|
|
"""
|
|
|
|
|
2015-10-11 11:32:27 +02:00
|
|
|
from waflib import Utils, Task, Options, Errors
|
2011-09-10 11:13:51 +02:00
|
|
|
from waflib.TaskGen import before_method, after_method, feature
|
|
|
|
from waflib.Tools import ccroot
|
|
|
|
from waflib.Configure import conf
|
|
|
|
|
|
|
|
ccroot.USELIB_VARS['cs'] = set(['CSFLAGS', 'ASSEMBLIES', 'RESOURCES'])
|
|
|
|
ccroot.lib_patterns['csshlib'] = ['%s']
|
|
|
|
|
|
|
|
@feature('cs')
|
|
|
|
@before_method('process_source')
|
|
|
|
def apply_cs(self):
|
|
|
|
"""
|
|
|
|
Create a C# task bound to the attribute *cs_task*. There can be only one C# task by task generator.
|
|
|
|
"""
|
|
|
|
cs_nodes = []
|
|
|
|
no_nodes = []
|
|
|
|
for x in self.to_nodes(self.source):
|
|
|
|
if x.name.endswith('.cs'):
|
|
|
|
cs_nodes.append(x)
|
|
|
|
else:
|
|
|
|
no_nodes.append(x)
|
|
|
|
self.source = no_nodes
|
|
|
|
|
2012-04-23 19:16:56 +02:00
|
|
|
bintype = getattr(self, 'bintype', self.gen.endswith('.dll') and 'library' or 'exe')
|
2011-09-10 11:13:51 +02:00
|
|
|
self.cs_task = tsk = self.create_task('mcs', cs_nodes, self.path.find_or_declare(self.gen))
|
|
|
|
tsk.env.CSTYPE = '/target:%s' % bintype
|
2012-06-02 04:17:12 +02:00
|
|
|
tsk.env.OUT = '/out:%s' % tsk.outputs[0].abspath()
|
|
|
|
self.env.append_value('CSFLAGS', '/platform:%s' % getattr(self, 'platform', 'anycpu'))
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
inst_to = getattr(self, 'install_path', bintype=='exe' and '${BINDIR}' or '${LIBDIR}')
|
|
|
|
if inst_to:
|
|
|
|
# note: we are making a copy, so the files added to cs_task.outputs won't be installed automatically
|
|
|
|
mod = getattr(self, 'chmod', bintype=='exe' and Utils.O755 or Utils.O644)
|
2016-05-06 15:51:21 +02:00
|
|
|
self.install_task = self.add_install_files(install_to=inst_to, install_from=self.cs_task.outputs[:], chmod=mod)
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
@feature('cs')
|
|
|
|
@after_method('apply_cs')
|
|
|
|
def use_cs(self):
|
|
|
|
"""
|
|
|
|
C# applications honor the **use** keyword::
|
|
|
|
|
|
|
|
def build(bld):
|
2012-04-23 19:16:56 +02:00
|
|
|
bld(features='cs', source='My.cs', bintype='library', gen='my.dll', name='mylib')
|
|
|
|
bld(features='cs', source='Hi.cs', includes='.', bintype='exe', gen='hi.exe', use='mylib', name='hi')
|
2011-09-10 11:13:51 +02:00
|
|
|
"""
|
|
|
|
names = self.to_list(getattr(self, 'use', []))
|
|
|
|
get = self.bld.get_tgen_by_name
|
|
|
|
for x in names:
|
|
|
|
try:
|
|
|
|
y = get(x)
|
|
|
|
except Errors.WafError:
|
2012-04-23 23:59:53 +02:00
|
|
|
self.env.append_value('CSFLAGS', '/reference:%s' % x)
|
2011-09-10 11:13:51 +02:00
|
|
|
continue
|
|
|
|
y.post()
|
|
|
|
|
|
|
|
tsk = getattr(y, 'cs_task', None) or getattr(y, 'link_task', None)
|
|
|
|
if not tsk:
|
|
|
|
self.bld.fatal('cs task has no link task for use %r' % self)
|
|
|
|
self.cs_task.dep_nodes.extend(tsk.outputs) # dependency
|
2017-02-16 07:03:43 +01:00
|
|
|
self.cs_task.set_run_after(tsk) # order (redundant, the order is inferred from the nodes inputs/outputs)
|
2012-04-23 23:59:53 +02:00
|
|
|
self.env.append_value('CSFLAGS', '/reference:%s' % tsk.outputs[0].abspath())
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
@feature('cs')
|
|
|
|
@after_method('apply_cs', 'use_cs')
|
|
|
|
def debug_cs(self):
|
|
|
|
"""
|
|
|
|
The C# targets may create .mdb or .pdb files::
|
|
|
|
|
|
|
|
def build(bld):
|
2012-04-23 19:16:56 +02:00
|
|
|
bld(features='cs', source='My.cs', bintype='library', gen='my.dll', csdebug='full')
|
2014-01-05 22:27:06 +01:00
|
|
|
# csdebug is a value in (True, 'full', 'pdbonly')
|
2011-09-10 11:13:51 +02:00
|
|
|
"""
|
|
|
|
csdebug = getattr(self, 'csdebug', self.env.CSDEBUG)
|
|
|
|
if not csdebug:
|
|
|
|
return
|
|
|
|
|
|
|
|
node = self.cs_task.outputs[0]
|
|
|
|
if self.env.CS_NAME == 'mono':
|
|
|
|
out = node.parent.find_or_declare(node.name + '.mdb')
|
|
|
|
else:
|
|
|
|
out = node.change_ext('.pdb')
|
|
|
|
self.cs_task.outputs.append(out)
|
2017-05-31 23:17:08 +02:00
|
|
|
|
|
|
|
if getattr(self, 'install_task', None):
|
|
|
|
self.pdb_install_task = self.add_install_files(
|
|
|
|
install_to=self.install_task.install_to, install_from=out)
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
if csdebug == 'pdbonly':
|
|
|
|
val = ['/debug+', '/debug:pdbonly']
|
|
|
|
elif csdebug == 'full':
|
|
|
|
val = ['/debug+', '/debug:full']
|
|
|
|
else:
|
|
|
|
val = ['/debug-']
|
2012-04-23 23:59:53 +02:00
|
|
|
self.env.append_value('CSFLAGS', val)
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
class mcs(Task.Task):
|
|
|
|
"""
|
|
|
|
Compile C# files
|
|
|
|
"""
|
|
|
|
color = 'YELLOW'
|
|
|
|
run_str = '${MCS} ${CSTYPE} ${CSFLAGS} ${ASS_ST:ASSEMBLIES} ${RES_ST:RESOURCES} ${OUT} ${SRC}'
|
|
|
|
|
2017-05-31 23:15:46 +02:00
|
|
|
def split_argfile(self, cmd):
|
|
|
|
inline = [cmd[0]]
|
|
|
|
infile = []
|
|
|
|
for x in cmd[1:]:
|
|
|
|
# csc doesn't want /noconfig in @file
|
|
|
|
if x.lower() == '/noconfig':
|
|
|
|
inline.append(x)
|
|
|
|
else:
|
|
|
|
infile.append(self.quote_flag(x))
|
|
|
|
return (inline, infile)
|
2012-07-26 07:05:46 +02:00
|
|
|
|
2011-09-10 11:13:51 +02:00
|
|
|
def configure(conf):
|
|
|
|
"""
|
|
|
|
Find a C# compiler, set the variable MCS for the compiler and CS_NAME (mono or csc)
|
|
|
|
"""
|
|
|
|
csc = getattr(Options.options, 'cscbinary', None)
|
|
|
|
if csc:
|
|
|
|
conf.env.MCS = csc
|
|
|
|
conf.find_program(['csc', 'mcs', 'gmcs'], var='MCS')
|
|
|
|
conf.env.ASS_ST = '/r:%s'
|
|
|
|
conf.env.RES_ST = '/resource:%s'
|
|
|
|
|
|
|
|
conf.env.CS_NAME = 'csc'
|
|
|
|
if str(conf.env.MCS).lower().find('mcs') > -1:
|
|
|
|
conf.env.CS_NAME = 'mono'
|
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
"""
|
|
|
|
Add a command-line option for the configuration::
|
|
|
|
|
|
|
|
$ waf configure --with-csc-binary=/foo/bar/mcs
|
|
|
|
"""
|
|
|
|
opt.add_option('--with-csc-binary', type='string', dest='cscbinary')
|
|
|
|
|
|
|
|
class fake_csshlib(Task.Task):
|
|
|
|
"""
|
|
|
|
Task used for reading a foreign .net assembly and adding the dependency on it
|
|
|
|
"""
|
|
|
|
color = 'YELLOW'
|
|
|
|
inst_to = None
|
|
|
|
|
|
|
|
def runnable_status(self):
|
|
|
|
return Task.SKIP_ME
|
|
|
|
|
|
|
|
@conf
|
|
|
|
def read_csshlib(self, name, paths=[]):
|
|
|
|
"""
|
|
|
|
Read a foreign .net assembly for the *use* system::
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
bld.read_csshlib('ManagedLibrary.dll', paths=[bld.env.mylibrarypath])
|
2012-04-23 19:16:56 +02:00
|
|
|
bld(features='cs', source='Hi.cs', bintype='exe', gen='hi.exe', use='ManagedLibrary.dll')
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
:param name: Name of the library
|
|
|
|
:type name: string
|
|
|
|
:param paths: Folders in which the library may be found
|
|
|
|
:type paths: list of string
|
|
|
|
:return: A task generator having the feature *fake_lib* which will call :py:func:`waflib.Tools.ccroot.process_lib`
|
|
|
|
:rtype: :py:class:`waflib.TaskGen.task_gen`
|
|
|
|
"""
|
|
|
|
return self(name=name, features='fake_lib', lib_paths=paths, lib_type='csshlib')
|
|
|
|
|