Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-11-13 16:07:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-11-13 16:07:34 +0300
commit1eecb1feaf21ef1c6e210d610922d70c659cc811 (patch)
tree209c02b7b0f0162ba562823e80035a83b927cc19 /CMakeLists.txt
parentc9f87df47ff7a24411ae59d2550d86989fecd7a9 (diff)
CMake: manpage creation is now optional
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3459030101a..1babdcfd654 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -329,6 +329,13 @@ endif()
# Unit testsing
option(WITH_GTESTS "Enable GTest unit testing" OFF)
+
+# Documentation
+if(UNIX AND NOT APPLE)
+ option(WITH_DOC_MANPAGE "Create a manual page (Unix manpage)" OFF)
+endif()
+
+
# OpenGL
option(WITH_GLEW_MX "Support multiple GLEW contexts (experimental)" OFF )