aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--subsurface-core/CMakeLists.txt9
1 files changed, 6 insertions, 3 deletions
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")