1234567891011121314151617181920212223242526272829303132333435363738 |
- import os
- def options(opt):
-
- pass
- def configure(conf):
- pass
-
-
-
-
- if conf.variant == 'linux_64_release':
-
- conf.env.LIB_m = ['m']
- conf.env.LIB_prepouet = 'prepouet'
- def build(bld):
-
- noarch = os.path.dirname(os.path.abspath(__file__))
- base = os.path.dirname(noarch)
- p = os.path.join(base, bld.variant)
- tg = bld.read_shlib(name='pouet', paths=[p])
- tg.export_defines = 'pouet=1'
- tg.export_includes = noarch
- tg.use = 'prepouet m'.split()
-
-
-
|