Skip to content

Update raylib to 5.5 #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ class RaylibWasm(ConanFile):
generators = "CMakeDeps", "CMakeToolchain"

def requirements(self):
# Raylib 5.0 is compatible with Android NDK version 26 or older, support for version 27 was first merged here:
# https://github.com/raysan5/raylib/commit/3079c69725b3e4f07f6984dc2f67262bba48b153
# This fix should be included in the next raylib release, version 5.5.
self.requires("raylib/5.0")
self.requires("raylib/5.5")

def layout(self):
cmake_layout(self)
3 changes: 2 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
find_package(raylib 5.0 REQUIRED)
find_package(raylib 5.5 REQUIRED)
message("Using raylib: ${raylib_DIR}")

if (ANDROID)
# Android doesn't want an executable, but instead a library that can be dynamically loaded
Expand Down