mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Android: Fix NDK r16b2 build
This commit is contained in:
parent
835eff15a1
commit
c2dcb97d06
@ -709,10 +709,12 @@ else()
|
||||
include_directories(Externals/SOIL)
|
||||
endif()
|
||||
|
||||
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")
|
||||
|
@ -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.
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#if __has_include_next(<variant>)
|
||||
#if __cplusplus >= 201703L && __has_include_next(<variant>)
|
||||
#include_next <variant>
|
||||
#else
|
||||
// MPark.Variant
|
||||
|
Loading…
Reference in New Issue
Block a user