Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Give vriable APPLE if on mac
authornavarro <navarro@caraja.(none)>
Wed, 23 May 2012 14:45:41 +0000 (16:45 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Wed, 23 May 2012 15:01:30 +0000 (17:01 +0200)
buildtools/Cmake/Flags.cmake

index a69b065..b565b6b 100644 (file)
@@ -27,11 +27,13 @@ else(enable_compile_optimizations)
         set(optCFLAGS "-O0 ")
 endif(enable_compile_optimizations)
 
-if(APPLE AND COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6")
-    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations")     
-    set(optCFLAGS "-O0 ")
-endif(APPLE AND COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6")
-
+if(APPLE)
+    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DAPPLE")
+    if(COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6")
+        set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations")         
+        set(optCFLAGS "-O0 ")
+    endif(COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6")
+endif(APPLE)
 if(NOT enable_debug)
     set(CMAKE_C_FLAGS "-DNDEBUG ${CMAKE_C_FLAGS}")
 endif(NOT enable_debug)