aboutsummaryrefslogtreecommitdiff
path: root/generate-docs.sh
blob: 93459d76b3e6f1fd887c41a7b8442fe3ef0ed9df (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/"
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