From db0da1656de0f739072951b6710f8db047f18532 Mon Sep 17 00:00:00 2001 From: Anton Lundin Date: Fri, 17 Jul 2015 22:06:16 +0200 Subject: [PATCH] Remove now unneeded define This removes the extra Q_OS_ANDROID define to prevent a redefined warning. Somehow, the qt headers didn't define Q_OS_ANDROID previously, but how does. Signed-off-by: Anton Lundin Signed-off-by: Dirk Hohndel --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a3fbb1cb3..c3a2b8740 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -242,7 +242,6 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux") endif() if(ANDROID) set(PLATFORM_SRC android.cpp) - add_definitions(-DQ_OS_ANDROID) set(SUBSURFACE_TARGET subsurface) endif() if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")