Merge "Doxygen Comment Generation" into devel/master
[platform/core/uifw/dali-toolkit.git] / plugins / dali-swig / SWIG / doxygen / scripts / genDoxy.sh
1 ########################################################################
2 #                                                                      #
3 # This script takes all the class*.xml, struct*.xml and namespace*.xml #
4 # generated & use them to generate .i files which can be added to      #
5 # dali.i for generation of doxygen comments for corresponding C# files #
6 #                                                                      #
7 ########################################################################
8
9 #PATH="../../"
10 # DoxyComments for class*.xml files in the folder
11 for file in class*.xml; do
12   suffix=".xml"
13   python doxy2swig_class.py "$file" "${file%$suffix}.i" > temp_version;
14 done
15
16
17 # DoxyComments for struct*.xml files in the folder
18 for file in struct*.xml; do
19   suffix=".xml"
20   python doxy2swig_struct.py "$file" "${file%$suffix}.i" > temp_version;
21 done
22
23
24 # DoxyComments for namespace*.xml files in the folder
25 for file in namespace*.xml; do
26   suffix=".xml"
27   python doxy2swig_namespace.py "$file" "${file%$suffix}.i" > temp_version;
28 done