mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 18:07:12 +01:00
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'))
|
|
|