Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • ebrains-8.0-a1
  • ebrains-8.0-a2
  • ebrains-8.0-a3
  • ebrains-8.0-a4
  • ebrains-8.0-a5
  • paper-mc-sbi
  • paper-mc-genetic
  • ebrains-4.0-a4
  • ebrains-4.0-rc1
  • ebrains-4.0-rc1-fixup1
  • ebrains-4.0-rc1-fixup2
  • ebrains-4.0-rc2
  • ebrains-5.0-rc1
  • ebrains-5.0-rc1-hotfix1
  • ebrains-6.0-a1
  • ebrains-6.0-rc1
  • ebrains-6.0-rc2
  • ebrains-7.0-a1
  • ebrains-7.0-rc1
  • ebrains-7.0-rc1-fixup1
21 results

wscript

Blame
  • wscript 506 B
    #!/usr/bin/env python
    import sys, os
    
    def options(opt):
        opt.recurse('test')
    
    def configure(cfg):
        cfg.recurse('test')
    
    def build(bld):
        bld.recurse('test')
    
        # install headers
        bld.install_files(
            dest = '${PREFIX}/include',
            files = bld.path.ant_glob('**/*.(h|hpp)', excl='test'),
            name = 'ztl_header',
            relative_trick = True
        )
    
        bld(
            target          = 'ZTL',
            export_includes = '.',
            use             = ['0TL', 'ztl_header'],
        )