From 837fbd9f09dcfc8e4c0ff4692ebbdf09590d22a8 Mon Sep 17 00:00:00 2001 From: kervala Date: Tue, 28 Sep 2010 15:37:52 +0200 Subject: [PATCH] Changed: Enable WITH_STLPORT by default under Windows (because we are providing external with STLport) --- code/CMakeModules/nel.cmake | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/CMakeModules/nel.cmake b/code/CMakeModules/nel.cmake index ddf5c8317..94fdf346d 100644 --- a/code/CMakeModules/nel.cmake +++ b/code/CMakeModules/nel.cmake @@ -182,7 +182,12 @@ MACRO(NL_SETUP_DEFAULT_OPTIONS) ### # Optional support ### - OPTION(WITH_STLPORT "With STLport support." OFF) + IF(WIN32) + OPTION(WITH_STLPORT "With STLport support." ON ) + ELSE(WIN32) + OPTION(WITH_STLPORT "With STLport support." OFF) + ENDIF(WIN32) + OPTION(BUILD_DASHBOARD "Build to the CDash dashboard" OFF) OPTION(WITH_NEL "Build NeL (nearly always required)." ON )