From: Daniel Meltzer Date: Thu, 7 Mar 2013 22:42:40 +0000 (-0500) Subject: Fix Build on OS X 10.7, Where notification center doesn't exist. X-Git-Tag: 0.9-rc1~9^2~1 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=7fc38881a2605b4ef70854a1424755faf36924a8;ds=sidebyside Fix Build on OS X 10.7, Where notification center doesn't exist. --- 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