From: Mike D. Lowis Date: Fri, 7 Dec 2012 22:01:59 +0000 (-0500) Subject: Moved Doxyfile and added doxygen project X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=d09f4027ca567b71ec51dc4b68661be405661d49;p=projs%2Flibcds.git Moved Doxyfile and added doxygen project --- diff --git a/build/DUMMY b/build/DUMMY deleted file mode 100644 index e69de29..0000000 diff --git a/Doxyfile b/build/Doxyfile similarity index 99% rename from Doxyfile rename to build/Doxyfile index 33ff16e..2bddb71 100644 --- a/Doxyfile +++ b/build/Doxyfile @@ -51,7 +51,7 @@ PROJECT_LOGO = # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. -OUTPUT_DIRECTORY = docs/doxygen +OUTPUT_DIRECTORY = doxygen # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output @@ -612,7 +612,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = src +INPUT = ../source # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is diff --git a/premake4.lua b/premake4.lua index 0ef8d21..707eb93 100644 --- a/premake4.lua +++ b/premake4.lua @@ -23,6 +23,9 @@ project "tests" files { "tests/**.c*" } postbuildcommands { "./tests.exe" } +project "doxygen" + postbuildcommands { "doxygen" } + ------------------------------------------------------------------------------- -- UnitTest++ - A C++ unit testing library -------------------------------------------------------------------------------