Cmake: correctly identify an Android build

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-11-05 07:57:47 -08:00
parent 4491711e09
commit 4e174df58f

View file

@ -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)
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")