aboutsummaryrefslogtreecommitdiffstats
path: root/generators
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-08-16 16:40:06 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2010-08-17 11:08:25 -0300
commit09a2d2aaa6349df614752f10cd8663ad3a83aee5 (patch)
tree23ff755a3127b705ac1a1d2f6b90ea245efd22de /generators
parent16e7b284c2c93a18bc181296f7486baf13ab9f1f (diff)
Do not compiles doc generator when ApiExtractor doesn't have support for
doc strings. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
Diffstat (limited to 'generators')
-rw-r--r--generators/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/generators/CMakeLists.txt b/generators/CMakeLists.txt
index f26def274..81f1c63f6 100644
--- a/generators/CMakeLists.txt
+++ b/generators/CMakeLists.txt
@@ -1 +1,3 @@
-add_subdirectory(qtdoc)
+if (NOT APIEXTRACTOR_DOCSTRINGS_DISABLED)
+ add_subdirectory(qtdoc)
+endif()