Browse Source

MAINT: remove legacy CMake endif()

* clean up a case where CMake endif()
contained the conditional used in the
if(), which is no longer needed /
discouraged since our minimum required
CMake version supports the modern syntax
tags/v0.3.7
Tyler Reddy 6 years ago
parent
commit
3f6ab1582a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmake/system_check.cmake

+ 1
- 1
cmake/system_check.cmake View File

@@ -15,7 +15,7 @@ if (${HOST_OS} STREQUAL "LINUX")
EXECUTE_PROCESS( COMMAND uname -o COMMAND tr -d '\n' OUTPUT_VARIABLE OPERATING_SYSTEM)
if(${OPERATING_SYSTEM} MATCHES "Android")
set(HOST_OS ANDROID)
endif(${OPERATING_SYSTEM} MATCHES "Android")
endif()
endif()




Loading…
Cancel
Save