From 4e174df58fd6447bc99826aba9adaa5b4284101d Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 5 Nov 2015 07:57:47 -0800 Subject: Cmake: correctly identify an Android build Signed-off-by: Dirk Hohndel --- subsurface-core/CMakeLists.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'subsurface-core/CMakeLists.txt') diff --git a/subsurface-core/CMakeLists.txt b/subsurface-core/CMakeLists.txt index e56f8bb34..9532ff35a 100644 --- a/subsurface-core/CMakeLists.txt +++ b/subsurface-core/CMakeLists.txt @@ -1,8 +1,11 @@ set(PLATFORM_SRC unknown_platform.c) +message(STATUS "system name ${CMAKE_SYSTEM_NAME}") if(CMAKE_SYSTEM_NAME STREQUAL "Linux") - set(PLATFORM_SRC linux.c) -elseif(ANDROID) - set(PLATFORM_SRC android.cpp) + if(ANDROID) + set(PLATFORM_SRC android.cpp) + else() + set(PLATFORM_SRC linux.c) + endif() elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin") set(PLATFORM_SRC macos.c) elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") -- cgit v1.2.3-70-g09d2