Example #1
0
def build_binding(binding):
    tmpdir = temporarydir()

    from shutil import copy

    #copy c souces to temp dir
    csources = []
    for csrc in binding.c_sources + binding.c_headers:
        copy(csrc, tmpdir)
        csources.append(os.path.basename(csrc))
        continue

    #make a Make.mm and local.def there
    makemm = binding_mk.Generator(binding.python_package,
                                  binding.binding_module, csources,
                                  binding.c_libs, binding.c_libdirs)
    makemm.generate(tmpdir)

    localdef = local_def.Generator(includes=binding.c_includes,
                                   defines=binding.c_defines)
    localdef.generate(tmpdir)

    #run mm
    callmm(tmpdir)

    #clean up
    from mcstas2 import DEBUG
    if not DEBUG:
        rmtree(tmpdir)
    return
Example #2
0
def export_pythonmodules(binding):
    tmpdir = temporarydir()

    from shutil import copy

    #copy python sources to temp dir
    pysources = []
    for module in binding.python_sources:
        copy(module, tmpdir)
        pysources.append(os.path.basename(module))
        continue

    #make a Make.mm and local.def in the temp dir
    makemm = pythonpackage_mk.Generator(binding.python_package, pysources)
    makemm.generate(tmpdir)

    localdef = local_def.Generator(includes=binding.c_includes)
    localdef.generate(tmpdir)

    #run mm
    callmm(tmpdir)

    #clean up
    from mcstas2 import DEBUG
    if not DEBUG:
        rmtree(tmpdir)
    return