From edf57e96800cd263ce7dd500c048fde69623f4bf Mon Sep 17 00:00:00 2001
From: Lars Bilke <lars.bilke@ufz.de>
Date: Thu, 28 Sep 2017 13:59:12 +0200
Subject: [PATCH] [CMake] Force 64-bit VS compiler.

Fixes out-of-memory errors in e.g. ProcessLib.
---
 CMakeLists.txt | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index fd3225f0da9..048723d2cbd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,6 +9,11 @@ cmake_minimum_required(VERSION 3.1)
 cmake_policy(SET CMP0011 NEW)
 cmake_policy(SET CMP0054 NEW)
 
+if(WIN32 AND NOT ${CMAKE_GENERATOR} STREQUAL Ninja)
+    # Force 64-bit VS compiler
+    set(CMAKE_GENERATOR_TOOLSET host=x64)
+endif()
+
 # Project name
 project( OGS-6 )
 
-- 
GitLab