wscript 361 B

1234567891011
  1. #! /usr/bin/env python
  2. def configure(conf):
  3. conf.load('erlang')
  4. def build(bld):
  5. bld(source='hello.erl', includes=['inc'])
  6. # This requires EUnit. The Erlangs EUnit header files are available erlang-dev package.
  7. bld(source=['hello_eunit.erl', 'hello.beam'], includes=['inc'], features="eunit")
  8. bld(source=['hello.erl'], includes=['inc'], features="edoc")