summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorsezero <sezero@users.sourceforge.net>2019-11-14 01:10:02 +0300
committerErik de Castro Lopo <erikd@mega-nerd.com>2019-11-15 19:06:58 +1100
commitcdcf0d557597e31a4d0230fbf472d3fb3f09c829 (patch)
tree13aba73060ff513aa6d3dd5413d262c019b61981 /doc
parent2907d4921cc4e46751c18478f5cbe1d60ce50cac (diff)
downloadflac-cdcf0d557597e31a4d0230fbf472d3fb3f09c829.tar.gz
cmake_minimum_required() cleanup:
- document version requirements in the top-level file. - remove incorrect version requirements from sub-dirs. - set min. required version to 3.5 in top-level file. - set minimun required version to 3.9 under docs/ . - make documents building an option (on by default.) so, the tree can be built using cmake-3.5 using -DBUILD_DOCS=0 on the command line.
Diffstat (limited to 'doc')
-rw-r--r--doc/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index 66fa843e..c7b075b1 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -1,4 +1,5 @@
-cmake_minimum_required(VERSION 3.1)
+cmake_minimum_required(VERSION 3.9)
+
find_package(Doxygen)
if (NOT DOXYGEN_FOUND)