From 24dc3892bc04b37d7280f9677315659df36e7077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Sch=C3=B6berl?= Date: Mon, 22 Feb 2016 10:03:27 +0100 Subject: [PATCH] use OSX system-gcc for compiling Togl2.1 --- ng/Togl2.1/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ng/Togl2.1/CMakeLists.txt b/ng/Togl2.1/CMakeLists.txt index aa127330..7e17dc51 100644 --- a/ng/Togl2.1/CMakeLists.txt +++ b/ng/Togl2.1/CMakeLists.txt @@ -8,7 +8,7 @@ include_directories("${TK_INCLUDE_PATH}/../PrivateHeaders") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -fomit-frame-pointer -Wall -Wno-implicit-int") if(APPLE) - set(CMAKE_C_COMPILER "gcc") + set(CMAKE_C_COMPILER "/usr/bin/gcc") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -x objective-c") endif(APPLE)