Reviewed by eseidel.
* CMakeLists.txt: add option to disable colored output when building on the buildbot
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16702
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
include (KDE4Defaults)
include (MacroLibrary)
+# Special option for BuildBot, to disable output colorization (must be done after KDE4Defaults is loaded)
+OPTION (WEBKIT_DO_NOT_USE_COLORFUL_OUTPUT "Do not colorize compilation output." OFF)
+
+IF (WEBKIT_DO_NOT_USE_COLORFUL_OUTPUT)
+ set(CMAKE_COLOR_MAKEFILE OFF)
+ENDIF (WEBKIT_DO_NOT_USE_COLORFUL_OUTPUT)
+
find_package (LibXml2 REQUIRED)
find_package (LibXslt REQUIRED)
find_package (JPEG REQUIRED)
--- /dev/null
+2006-10-01 Nikolas Zimmermann <zimmermann@kde.org>
+
+ Reviewed by eseidel.
+
+ * CMakeLists.txt: add option to disable colored output when building on the buildbot
+