Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
linphone-cmake-builder
Commits
68ffcb1f
Commit
68ffcb1f
authored
Mar 29, 2018
by
Sylvain Berfini
🐮
Browse files
Fixed build with Android NDK 17
parent
42ff9b35
Changes
1
Hide whitespace changes
Inline
Side-by-side
builders/androidsupport/CMakeLists.txt
View file @
68ffcb1f
...
...
@@ -30,10 +30,14 @@ if(CMAKE_ANDROID_NDK_VERSION VERSION_LESS 16)
set
(
SUPPORT_SOURCES
"
${
CMAKE_ANDROID_NDK
}
/sources/android/support/src/musl-multibyte/wctomb.c"
)
else
(
)
else
if
(
CMAKE_ANDROID_NDK_VERSION VERSION_LESS 17
)
set
(
SUPPORT_SOURCES
"
${
CMAKE_ANDROID_NDK
}
/sources/android/support/src/iswblank.cpp"
)
else
()
set
(
SUPPORT_SOURCES
"
${
CMAKE_ANDROID_NDK
}
/sources/android/support/src/locale_support.cpp"
)
endif
()
add_library
(
support STATIC
${
SUPPORT_SOURCES
}
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment