From 7fc38881a2605b4ef70854a1424755faf36924a8 Mon Sep 17 00:00:00 2001 From: Daniel Meltzer Date: Thu, 7 Mar 2013 17:42:40 -0500 Subject: [PATCH] Fix Build on OS X 10.7, Where notification center doesn't exist. --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c7656993..6a99783a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,7 +69,10 @@ option(STATIC "Enable static building (might not be portable)" OFF) if(APPLE) option(DEPLOY "Mac OS X only! Adds required libs to bundle resources and create a dmg. Note: requires Qt to be built with 10.4u SDK" OFF) - option(WITH_NOTIFICATION_CENTER "Enable OS X Notification Center support" ON) + # Notification Center is only available in > 10.8, which is Darwin v12 + if(CMAKE_SYSTEM_VERSION VERSION_GREATER "11.9.9") + option(WITH_NOTIFICATION_CENTER "Enable OS X Notification Center support" ON) + endif(CMAKE_SYSTEM_VERSION VERSION_GREATER "11.9.9") endif(APPLE) # Default to embedding data in the static case -- 2.20.1