From 18baa5c40b940244ccec292bd486fff9067e53d8 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Sun, 12 Apr 2009 13:50:18 +0200 Subject: [PATCH] Remove unnecessary GCC_EXE CMake flag. Closes #208, thanks impulze. --- runtime/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index e6dd59f1..e10cc16d 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -2,11 +2,6 @@ project(runtime) cmake_minimum_required(VERSION 2.6) -find_program(GCC_EXE gcc DOC "path to gcc binary") -if(NOT GCC_EXE) - message(STATUS "gcc needs to be on your path to build the runtime") -endif(NOT GCC_EXE) - option(BUILD_SHARED_LIBS "build the runtime as shared libraries (linux only)") option(BUILD_BC_LIBS "build the runtime as bytecode libraries") option(BUILD_SINGLE_LIB "build single runtime library" ON)