From da5af154ab037c9f2d28cb8e49248d48e25a03b6 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Tue, 12 Aug 2014 15:02:19 +0200 Subject: [PATCH] fix build on my machine (openSUSE 13.1), it broke because the CheckCSourceCompiles CMake module was not included... --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a41fddb4da..1ed8203cdd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,6 @@ cmake_minimum_required (VERSION 2.8) +include (CheckCSourceCompiles) project (ResInsight) set (VIZ_MODULES_FOLDER_NAME Fwk/VizFwk)