Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed Android ABI check to match vulkan/vk_platform.h
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
CMakeLists.txt
|
@@ -859,7 +859,7 @@ if(ANDROID) |
|
|
endif() |
|
|
|
|
|
CHECK_C_SOURCE_COMPILES(" |
|
|
#if defined(__ANDROID__) && defined(__ARM_EABI__) && !defined(__ARM_ARCH_7A__) |
|
|
#if defined(__ANDROID__) && defined(__ARM_ARCH) && __ARM_ARCH < 7 |
|
|
#error Vulkan doesn't work on this configuration |
|
|
#endif |
|
|
int main() |
|
|