Skip to content
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

[raylib] Add new port (fix #4500) #5946

Merged
merged 9 commits into from
May 20, 2019
10 changes: 10 additions & 0 deletions ports/raylib/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ if(TARGET_TRIPLET MATCHES "^arm" OR TARGET_TRIPLET MATCHES "uwp$")
message(FATAL_ERROR "raylib doesn't support ARM or UWP.")
endif()

message(
myd7349 marked this conversation as resolved.
Show resolved Hide resolved
"raylib currently requires the following libraries from the system package manager:
libgl1-mesa-dev
libx11-dev
libxcursor-dev
libxinerama-dev
libxrandr-dev
These can be installed on Ubuntu systems via sudo apt install libgl1-mesa-dev libx11-dev libxcursor-dev libxinerama-dev libxrandr-dev"
)

include(vcpkg_common_functions)

vcpkg_from_github(
Expand Down