123456789101112131415161718192021222324 |
- VERSION = '0.0.1'
- APPNAME = 'ocaml_test'
- top = '.'
- out = 'build'
- def configure(conf):
- conf.load('ocaml')
- def build(bld):
- bld(
- features = 'ocaml',
- kind = 'all',
- includes = '.',
- target = 'camlprog',
- source = bld.path.ant_glob('*.ml'))
|