diff options
author | cathook <b01902109@csie.ntu.edu.tw> | 2014-06-24 15:08:59 +0800 |
---|---|---|
committer | cathook <b01902109@csie.ntu.edu.tw> | 2014-06-24 15:08:59 +0800 |
commit | 8d01cbab767d6660cdb0874fa99dd70e1f942add (patch) | |
tree | 16dea7c9b6b60f6d60c66d2781122fee57d9226d | |
parent | 2b1782939ff561dc15f7a80e0e10055f2a8b1c82 (diff) | |
download | meow-8d01cbab767d6660cdb0874fa99dd70e1f942add.tar meow-8d01cbab767d6660cdb0874fa99dd70e1f942add.tar.gz meow-8d01cbab767d6660cdb0874fa99dd70e1f942add.tar.bz2 meow-8d01cbab767d6660cdb0874fa99dd70e1f942add.tar.lz meow-8d01cbab767d6660cdb0874fa99dd70e1f942add.tar.xz meow-8d01cbab767d6660cdb0874fa99dd70e1f942add.tar.zst meow-8d01cbab767d6660cdb0874fa99dd70e1f942add.zip |
add main page
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | doxygen/config | 4 | ||||
-rw-r--r-- | doxygen/mainpage.dox | 19 |
3 files changed, 22 insertions, 3 deletions
@@ -23,7 +23,7 @@ readme: $(README_HTML); doc: document; clean_space: - find $(TEMPLATE_DIRS) Makefile $(README) readme_generate.py -type f | while read -r f; do \ + find $(TEMPLATE_DIRS) Makefile $(README) doxygen/pages.dox readme_generate.py -type f | while read -r f; do \ cat "$$f" | sed -e 's/[\t ]*$$//g' > tmp_file.$$$$; \ cat tmp_file.$$$$ > "$$f"; \ done; \ diff --git a/doxygen/config b/doxygen/config index 1c0a2c1..6a16fc6 100644 --- a/doxygen/config +++ b/doxygen/config @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "Templates -- Meow" -PROJECT_NUMBER = 1.2.5 +PROJECT_NUMBER = 1.2.6 PROJECT_BRIEF = "A C++ template contains kinds of interesting classes and functions" PROJECT_LOGO = $(config_path)/logo.png OUTPUT_DIRECTORY = doc @@ -103,7 +103,7 @@ WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = meowpp +INPUT = meowpp $(config_path)/pages.dox INPUT_ENCODING = UTF-8 FILE_PATTERNS = RECURSIVE = YES diff --git a/doxygen/mainpage.dox b/doxygen/mainpage.dox new file mode 100644 index 0000000..f74794b --- /dev/null +++ b/doxygen/mainpage.dox @@ -0,0 +1,19 @@ +/*! + * @mainpage Meow's Main Page~~ + * @section intro Introduction + * blablabla + * + * @section links Links + * - GitHub: <a href='https://github.com/cathook/meow'> + * https://github.com/cathook/meow</a> + * - Mirror: <a href='http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow'> + * http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow</a> + * - Readme: <a href='http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow/README.html'> + * http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow/README.html'</a> + * - document: <a href='http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow/doc/html/index.html'> + * http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow/doc/html/index.html</a> + * + * @section authors Authors + * - cathook: cat.hook31894 <<<>>> gmail.com + * - cat_leopard: b01902109 ???!!! csie.ntu.edu.tw + */ |