ci: do not error when nothing with nitunit_some
[nit.git] / contrib / neo_doxygen / gen-one.sh
1 #! /bin/bash
2
3 # This file is part of NIT ( http://www.nitlanguage.org ).
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # ./gen-one.sh <source_language> <directory>
18 #
19 # Document the project in the specified directory.
20 #
21 # The project name is the basename of the specified directory.
22 # The project directory must contain a `.nx_config` file.
23 # Also, the directory must include the Doxygen XML output in its `doxygen/xml`
24 # subdirectory.
25
26 NEO_DOXYGEN="${PWD}/bin/neo_doxygen"
27 NX="${PWD}/../../bin/nx"
28 dir=$2
29
30 . sh-lib/errors.sh
31
32 echo "$0: Documenting \"${dir##*/}\"..."
33 pushd "$dir"
34 try "$NEO_DOXYGEN" --src-lang "$1" --dest http://localhost:7474 -- "${dir##*/}" "$dir/doxygen/xml"
35 try echo "$0: [done] neo_doxygen"
36 try "$NX" neo doc "${dir##*/}"
37 try echo "$0: [done] nx"
38 popd