Android: Fix NDK r16b2 build

This commit is contained in:
Greg Wicks 2017-11-07 10:47:54 -05:00
parent 835eff15a1
commit c2dcb97d06
3 changed files with 7 additions and 5 deletions

View File

@ -709,10 +709,12 @@ else()
include_directories(Externals/SOIL)
endif()
find_library(ICONV_LIBRARIES NAMES iconv libiconv libiconv-2 c)
find_path(ICONV_INCLUDE_DIR NAMES iconv.h)
if (NOT ANDROID)
find_library(ICONV_LIBRARIES NAMES iconv libiconv libiconv-2 c)
find_path(ICONV_INCLUDE_DIR NAMES iconv.h)
endif()
if (ICONV_LIBRARIES AND ICONV_INCLUDE_DIR)
if (NOT ANDROID AND ICONV_LIBRARIES AND ICONV_INCLUDE_DIR)
mark_as_advanced(ICONV_INCLUDE_DIR ICONV_LIBRARIES)
else()
message(STATUS "Using static iconv from Externals")

View File

@ -4,7 +4,7 @@
#pragma once
#if __has_include_next(<optional>)
#if __cplusplus >= 201703L && __has_include_next(<optional>)
#include_next <optional>
#else
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.

View File

@ -4,7 +4,7 @@
#pragma once
#if __has_include_next(<variant>)
#if __cplusplus >= 201703L && __has_include_next(<variant>)
#include_next <variant>
#else
// MPark.Variant