From 8266a564863e530169101e35a8e82fc346b61a59 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sun, 25 Dec 2011 12:44:31 -0600 Subject: [PATCH] Missed a line here --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a22e017107..1eac2b2cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -375,8 +375,10 @@ else() if(NOT CG_FOUND) message("CG not found, Building without") add_definitions(-DHAVE_CG=0) + set(HAVE_CG 0) else() add_definitions(-DHAVE_CG=1) + set(HAVE_CG 1) endif() endif()