Skip to content

Commit

Permalink
adding doxygen documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoern-andres committed Jun 17, 2013
1 parent e1bec4e commit b1d82e5
Show file tree
Hide file tree
Showing 4 changed files with 1,590 additions and 39 deletions.
20 changes: 18 additions & 2 deletions CMakeLists.txt
@@ -1,6 +1,17 @@
project(andres-ml-random-forest)
cmake_minimum_required(VERSION 2.6)
project(ml)
include_directories(include)
file(GLOB headers_insegt include/andres/* include/andres/ml/*)
file(GLOB headers include/andres/* include/andres/ml/*)

##############################################################################
# Doxygen
##############################################################################
find_package(Doxygen QUIET)
if(DOXYGEN_FOUND)
message(STATUS "Doxygen found")
else()
message("doxygen not found")
endif()

##############################################################################
# MSVC-specific settings
Expand All @@ -26,3 +37,8 @@ endif()
##############################################################################
add_executable(test-decision-trees src/unittest/ml/test-decision-trees.cxx ${headers})
add_test(test-decision-trees test-decision-trees)

if(DOXYGEN_FOUND)
configure_file("${ml_SOURCE_DIR}/doxygen/doxyfile-ml-decision-trees.in" "${ml_BINARY_DIR}/doxyfile-ml-decision-trees" @ONLY IMMEDIATE)
add_custom_target(doc-ml-decision-trees ALL COMMAND ${DOXYGEN} "${ml_BINARY_DIR}/doxyfile-ml-decision-trees")
endif()
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
random-forest
=============

Randomized Decision Trees: A Fast C++ Implementation of Random Forests
andres::ml::DecisionTrees: A Fast C++ Implementation of Random Forests

Copyright (c) 2013 by Steffen Kirchhoff and Bjoern Andres.

Expand Down

0 comments on commit b1d82e5

Please sign in to comment.