#=============================================================================== # @file CMakeLists.txt # # @author Guillaume Anciaux # @author Nicolas Richart # # @date Mon Jul 28 12:20:03 2014 # # @brief Principal CMamke for the documentation # # @section LICENSE # # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne) # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides) # # LibMultiScale is free software: you can redistribute it and/or modify it under the # terms of the GNU Lesser General Public License as published by the Free # Software Foundation, either version 3 of the License, or (at your option) any # later version. # # LibMultiScale is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more # details. # # You should have received a copy of the GNU Lesser General Public License # along with LibMultiScale. If not, see . # #=============================================================================== find_package(Doxygen REQUIRED) SET(LIBMULTISCALE_BUILD_DOXYGEN FALSE CACHE BOOL "Request build of doxygen of LibMultiScale sources" ) if(DOXYGEN_FOUND AND LIBMULTISCALE_BUILD_DOXYGEN) set(DOXYGEN_WARNINGS NO) set(DOXYGEN_QUIET "YES" CACHE STRING "switch to make doxygen quiet or not") mark_as_advanced(DOXYGEN_QUIET) if(CMAKE_VERBOSE_MAKEFILE) set(DOXYGEN_WARNINGS YES) set(DOXYGEN_QUIET "NO" CACHE STRING "switch to make doxygen quiet or not" FORCE) endif(CMAKE_VERBOSE_MAKEFILE) add_subdirectory(doxygen) endif() add_subdirectory(manual)