mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
CMake+Android: Skip tests with SetCameraMode
src/core.c does explicitly skip including <camera.h> on Android and tests fail. Therefore skip these failing tests. Closes #507.
This commit is contained in:
@ -86,7 +86,9 @@ script:
|
||||
- if [ "$GLFW" != "SYSTEM" ]; then make package; fi;
|
||||
- sudo make install
|
||||
- pkg-config --static --libs raylib
|
||||
- nm -g release/libraylib.a | grep glfwGetProcAddress || (echo "libraylib.a doesn't contain GLFW symbols! Aborting..." && false)
|
||||
- if [[ "$ARCH" != *-android ]]; then
|
||||
nm -g release/libraylib.a | grep glfwGetProcAddress || (echo "libraylib.a doesn't contain GLFW symbols! Aborting..." && false);
|
||||
fi
|
||||
|
||||
deploy:
|
||||
provider: releases
|
||||
|
||||
Reference in New Issue
Block a user