diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2019-01-24 18:43:19 +0100 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2019-01-24 18:43:19 +0100 |
commit | f7cbdc09858b7d26765e819c89e4289d30877f74 (patch) | |
tree | d6f9b5046e86501ab5b0ecc3c1ec3688e22a0307 /Doxyfile.in | |
parent | 8e4c28de760033dde2469bb69b76a80076d0fc39 (diff) | |
parent | af8ee6d30ac8ae45cf440c6bc2e03a873e3db584 (diff) | |
download | libnitrokey-f7cbdc09858b7d26765e819c89e4289d30877f74.tar.gz libnitrokey-f7cbdc09858b7d26765e819c89e4289d30877f74.tar.bz2 |
Merge branch 'pr_148'
Generate documentation for C API using Doxygen
Fixes #148
Diffstat (limited to 'Doxyfile.in')
-rw-r--r-- | Doxyfile.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Doxyfile.in b/Doxyfile.in new file mode 100644 index 0000000..9211df1 --- /dev/null +++ b/Doxyfile.in @@ -0,0 +1,17 @@ +# For better readability, the documentation and default settings are removed +# from this file. For more information on the Doxygen configuration, generate +# a new Doxyfile using `doxygen -g` or have a look at the Doxygen manual at +# http://www.doxygen.nl/manual/config.html +# +# This file is processed by CMake. To generate the documentation, run `make +# doc` in the build directory. + +PROJECT_NAME = "@CMAKE_PROJECT_NAME@" +PROJECT_NUMBER = "@PROJECT_VERSION@" +PROJECT_BRIEF = +OUTPUT_DIRECTORY = doc +STRIP_FROM_PATH = @CMAKE_CURRENT_SOURCE_DIR@ +JAVADOC_AUTOBRIEF = YES +OPTIMIZE_OUTPUT_FOR_C = YES +WARN_NO_PARAMDOC = YES +INPUT = @CMAKE_CURRENT_SOURCE_DIR@/NK_C_API.h |