From b2f48a0f5bf309ee438bbd8f34a1817fe262926e Mon Sep 17 00:00:00 2001 From: jerry Date: Tue, 6 May 2014 11:57:55 +0000 Subject: [PATCH] included synmacph only on mavericks or above --- src/cmd/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cmd/CMakeLists.txt b/src/cmd/CMakeLists.txt index 488cf09e..7cf8bf61 100644 --- a/src/cmd/CMakeLists.txt +++ b/src/cmd/CMakeLists.txt @@ -25,5 +25,7 @@ if (WIN32) endif() if (APPLE) - add_subdirectory(synmacph) + if (DARWIN_VERSION GREATER 12) + add_subdirectory(synmacph) + endif() endif()