aboutsummaryrefslogblamecommitdiff
path: root/generate-docs.sh
blob: 0585f5e07f959397f993ccae43ae6ebf18cfde92 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

         
                                                        











                               
                           
                         

                                                                 
#!/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 \
    --title "Haxe Tester" \
    -D version $VERSION \
    -D source-path $SOURCE_PATH \
    -D description "Simple Haxe library for creating test cases."