fix: Don’t care about buggy Android toolchain

This commit is contained in:
Andreas Schuh 2016-11-26 21:49:15 +00:00
parent 90e80e8f56
commit ef1a2eccd2

View file

@ -92,10 +92,10 @@ set (PACKAGE_DESCRIPTION "A commandline flags library that allows for distribute
set (PACKAGE_URL "http://gflags.github.io/gflags")
project (${PACKAGE_NAME} CXX)
if (CMAKE_VERSION VERSION_LESS 3.4 OR (ANDROID AND CMAKE_VERSION VERSION_LESS 3.7))
if (CMAKE_VERSION VERSION_LESS 3.4)
# C language still needed because the following required CMake modules
# (or their dependencies, respectively) are not correctly handling
# the case where only CXX is enabled; same for Android toolchain before CMake 3.7
# the case where only CXX is enabled
# - CheckTypeSize.cmake (fixed in CMake 3.1, cf. https://cmake.org/Bug/view.php?id=14056)
# - FindThreads.cmake (fixed in CMake 3.4, cf. https://cmake.org/Bug/view.php?id=14905)
enable_language (C)