From d09f4027ca567b71ec51dc4b68661be405661d49 Mon Sep 17 00:00:00 2001 From: "Mike D. Lowis" Date: Fri, 7 Dec 2012 17:01:59 -0500 Subject: [PATCH] Moved Doxyfile and added doxygen project --- build/DUMMY | 0 Doxyfile => build/Doxyfile | 4 ++-- premake4.lua | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 build/DUMMY rename Doxyfile => build/Doxyfile (99%) 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 ------------------------------------------------------------------------------- -- 2.52.0