From b00360d323fa4f780f78f1e436559a7da856d46d Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Fri, 2 Jul 2010 14:22:12 +0000 Subject: [PATCH] Make installing the docs OPTIONAL so that there's no error if the user runs 'make install' without having run 'make doc'. --- library/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index 5d20f605..acbe37cf 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -54,6 +54,7 @@ if(DOXYGEN_FOUND) ${CMAKE_CURRENT_BINARY_DIR}/doc/html/polyvox.qch DESTINATION ${PolyVox_DOC_INSTALL_DIR}/qthelp COMPONENT development + OPTIONAL ) endif() endif()