aboutsummaryrefslogtreecommitdiff
path: root/generate-docs.sh
blob: 2cc4941fc17cd26685d45e88073be6db4b19e3b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

SOURCE_PATH="https://git.rc-05.com/haxe-tester/tree/src"
VERSION=${VERSION:-git}

haxe --class-path src \
    --no-output \
    --interp \
    --xml types.xml \
    tester

haxelib run dox \
    -i types.xml \
    -o docs \
    --toplevel-package tester \
    -D version $VERSION \
    -D source-path $SOURCE_PATH