wscript 428 B

123456789101112131415161718192021222324
  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. # Thomas Nagy, 2005-2010 (ita)
  4. # the following two variables are used by the target "waf dist"
  5. VERSION = '0.0.1'
  6. APPNAME = 'ocaml_test'
  7. # these variables are mandatory,
  8. top = '.'
  9. out = 'build'
  10. def configure(conf):
  11. conf.load('ocaml')
  12. def build(bld):
  13. bld(
  14. features = 'ocaml',
  15. kind = 'all',
  16. includes = '.',
  17. target = 'camlprog',
  18. source = bld.path.ant_glob('*.ml'))