Allow choice of DLL or static CRT libraries through CMake options.

Also, some trivial miscellaneous build-related changes.


git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@25811 e7fa87d3-cd2b-0410-9028-fcbf551c1848
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fd5dcc0..f8471a2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,19 +1,25 @@
-cmake_minimum_required(VERSION 2.8)
-
-set(CMAKE_INSTALL_PREFIX install)
-
-project(glslang)
-
-add_subdirectory(glslang/MachineIndependent)
-add_subdirectory(glslang/MachineIndependent/preprocessor)
-add_subdirectory(glslang/GenericCodeGen)
-add_subdirectory(OGLCompilersDLL)
-add_subdirectory(StandAlone)
-
-if(WIN32)
-    add_subdirectory(glslang/OSDependent/Windows)
-elseif(UNIX)
-    add_subdirectory(glslang/OSDependent/Linux)
-else(WIN32)
-    message("unkown platform")
-endif(WIN32)
+cmake_minimum_required(VERSION 2.8)

+

+set(CMAKE_INSTALL_PREFIX "install" CACHE STRING "prefix" FORCE)

+

+project(glslang)

+

+if(WIN32)

+    include(ChooseMSVCCRT.cmake)

+    foreach(build_type ${CMAKE_CONFIGURATION_TYPES} ${CMAKE_BUILD_TYPE})

+        string(TOUPPER "${build_type}" build)

+        message("CMAKE_CXX_FLAGS_${build} are ${CMAKE_CXX_FLAGS_${build}}")

+    endforeach(build_type)

+

+    add_subdirectory(glslang/OSDependent/Windows)

+elseif(UNIX)

+    add_subdirectory(glslang/OSDependent/Linux)

+else(WIN32)

+    message("unkown platform")

+endif(WIN32)

+

+add_subdirectory(glslang/MachineIndependent)

+add_subdirectory(glslang/MachineIndependent/preprocessor)

+add_subdirectory(glslang/GenericCodeGen)

+add_subdirectory(OGLCompilersDLL)

+add_subdirectory(StandAlone)