Android: Remove hardcoded ICU include paths from hs20-osu-client
ICU exports them using LOCAL_EXPORT_C_INCLUDE_DIRS. Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
This commit is contained in:
parent
2e1d7386e2
commit
96d1d97af6
1 changed files with 6 additions and 3 deletions
|
@ -8,9 +8,12 @@ INCLUDES += external/openssl/include
|
|||
INCLUDES += external/libxml2/include
|
||||
INCLUDES += external/curl/include
|
||||
INCLUDES += external/webkit/Source/WebKit/gtk
|
||||
ifneq ($(wildcard external/icu),)
|
||||
INCLUDES += external/icu/icu4c/source/common
|
||||
else
|
||||
|
||||
# We try to keep this compiling against older platform versions.
|
||||
# The new icu location (external/icu) exports its own headers, but
|
||||
# the older versions in external/icu4c don't, and we need to add those
|
||||
# headers to the include path by hand.
|
||||
ifeq ($(wildcard external/icu),)
|
||||
INCLUDES += external/icu4c/common
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue