From bc50231d76f47aeca573e0719935fda5e32a60d5 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Wed, 27 Apr 2011 11:08:17 -0500 Subject: [PATCH] add doxygen to build --- CMakeLists.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index acf3a20..09b3323 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# 2009-2010 Ryan Pavlik +# 2009-2011 Ryan Pavlik # http://academic.cleardefinition.com/ # Iowa State University HCI Graduate Program/VRAC @@ -27,6 +27,7 @@ option(CPACK_MONOLITHIC_INSTALL "Only produce a single component installer, rath # Locally-developed modules dist'ed with this app - always have this first. list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") include(UseBackportedModules) +include(DoxygenTargets) add_definitions(-DWIIUSE_COMPILE_LIB) @@ -63,6 +64,9 @@ if(BUILD_EXAMPLE_SDL) add_subdirectory(example-sdl) endif() +# Documentation +add_doxygen(Doxyfile) + ### # Set packaging options (for CPack) ### @@ -108,4 +112,4 @@ cpack_add_component(examples cpack_add_component(runtime DISPLAY_NAME "Runtime Library" - REQUIRED) \ No newline at end of file + REQUIRED)