You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
428 B
Python
25 lines
428 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2005-2010 (ita)
|
|
|
|
# the following two variables are used by the target "waf dist"
|
|
VERSION = '0.0.1'
|
|
APPNAME = 'ocaml_test'
|
|
|
|
# these variables are mandatory,
|
|
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'))
|
|
|