Skip to content

Commit

Permalink
[raylib] Cleanup, fix platform support (microsoft#40209)
Browse files Browse the repository at this point in the history
  • Loading branch information
dg0yt authored Aug 6, 2024
1 parent 4a40554 commit a2367ce
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 78 deletions.
13 changes: 13 additions & 0 deletions ports/raylib/android.diff
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/cmake/GlfwImport.cmake b/cmake/GlfwImport.cmake
index d0c23ca..92cd5c3 100644
--- a/cmake/GlfwImport.cmake
+++ b/cmake/GlfwImport.cmake
@@ -30,6 +30,8 @@ if(NOT glfw3_FOUND AND NOT USE_EXTERNAL_GLFW STREQUAL "ON" AND "${PLATFORM}" MAT
include_directories(BEFORE SYSTEM external/glfw/include)
elseif("${PLATFORM}" STREQUAL "DRM")
MESSAGE(STATUS "No GLFW required on PLATFORM_DRM")
+elseif("${PLATFORM}" STREQUAL "Android")
+ list(REMOVE_ITEM LIBS_PRIVATE glfw)
else()
MESSAGE(STATUS "Using external GLFW")
set(GLFW_PKG_DEPS glfw3)
29 changes: 0 additions & 29 deletions ports/raylib/fix-linkGlfw.patch

This file was deleted.

86 changes: 43 additions & 43 deletions ports/raylib/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if(VCPKG_TARGET_IS_OSX OR VCPKG_TARGET_IS_LINUX)
if(VCPKG_TARGET_IS_LINUX)
message(
"raylib currently requires the following libraries from the system package manager:
libgl1-mesa-dev
Expand All @@ -10,60 +10,64 @@ These can be installed on Ubuntu systems via sudo apt install libgl1-mesa-dev li
)
endif()

if(VCPKG_TARGET_IS_OSX OR VCPKG_TARGET_IS_LINUX)
set(patches fix-linkGlfw.patch)
endif()

if(VCPKG_TARGET_IS_EMSCRIPTEN)
set(ADDITIONAL_OPTIONS "-DPLATFORM=Web")
endif()

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO raysan5/raylib
REF "${VERSION}"
SHA512 5956bc1646b99baac6eb1652c4d72e96af874337158672155ba144f131de8a4fd19291a58335a92fcaaa2fc818682f93ff4230af0f815efb8b49f7d2a162e9b0
HEAD_REF master
PATCHES
${patches}
android.diff
)
file(GLOB vendored_headers RELATIVE "${SOURCE_PATH}/src/external"
"${SOURCE_PATH}/src/external/cgltf.h"
# Do not use dirent from vcpkg: It is a different implementation which has
# 'include <windows.h>', leading to duplicate and conflicting definitions.
#"${SOURCE_PATH}/src/external/dirent.h"
"${SOURCE_PATH}/src/external/dr_*.h" # from drlibs
"${SOURCE_PATH}/src/external/miniaudio.h"
"${SOURCE_PATH}/src/external/nanosvg*.h"
"${SOURCE_PATH}/src/external/qoi.h"
"${SOURCE_PATH}/src/external/s*fl.h" # from mmx
"${SOURCE_PATH}/src/external/stb_*"
)
set(optional_vendored_headers
"stb_image_resize2.h" # not yet in vcpkg
)
foreach(header IN LISTS vendored_headers)
unset(vcpkg_file)
find_file(vcpkg_file NAMES "${header}" PATHS "${CURRENT_INSTALLED_DIR}/include" PATH_SUFFIXES mmx nanosvg NO_DEFAULT_PATH NO_CACHE)
if(vcpkg_file)
message(STATUS "De-vendoring '${header}'")
file(COPY "${vcpkg_file}" DESTINATION "${SOURCE_PATH}/src/external")
elseif(header IN_LIST optional_vendored_headers)
message(STATUS "Not de-vendoring '${header}' (absent in vcpkg)")
else()
message(FATAL_ERROR "No replacement for vendored '${header}'")
endif()
endforeach()

string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" SHARED)
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" STATIC)
set(PLATFORM_OPTIONS "")
if(VCPKG_TARGET_IS_ANDROID)
list(APPEND PLATFORM_OPTIONS -DPLATFORM=Android -DUSE_EXTERNAL_GLFW=OFF)
elseif(VCPKG_TARGET_IS_EMSCRIPTEN)
list(APPEND PLATFORM_OPTIONS -DPLATFORM=Web -DUSE_EXTERNAL_GLFW=OFF)
else()
list(APPEND PLATFORM_OPTIONS -DPLATFORM=Desktop -DUSE_EXTERNAL_GLFW=ON)
endif()

vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
hidpi SUPPORT_HIGH_DPI
use-audio USE_AUDIO
)

if(VCPKG_TARGET_IS_MINGW)
set(DEBUG_ENABLE_SANITIZERS OFF)
else()
set(DEBUG_ENABLE_SANITIZERS ON)
endif()

vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DBUILD_EXAMPLES=OFF
-DSHARED=${SHARED}
-DSTATIC=${STATIC}
-DUSE_EXTERNAL_GLFW=OFF # externl glfw3 causes build errors on Windows
-DCMAKE_POLICY_DEFAULT_CMP0072=NEW # Prefer GLVND
${PLATFORM_OPTIONS}
${FEATURE_OPTIONS}
${ADDITIONAL_OPTIONS}
OPTIONS_DEBUG
-DENABLE_ASAN=${DEBUG_ENABLE_SANITIZERS}
-DENABLE_UBSAN=${DEBUG_ENABLE_SANITIZERS}
-DENABLE_MSAN=OFF
OPTIONS_RELEASE
-DENABLE_ASAN=OFF
-DENABLE_UBSAN=OFF
-DENABLE_MSAN=OFF
MAYBE_UNUSED_VARIABLES
SHARED
STATIC
SUPPORT_HIGH_DPI
)

vcpkg_cmake_install()
Expand All @@ -74,16 +78,12 @@ vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT})
vcpkg_fixup_pkgconfig()

file(REMOVE_RECURSE
${CURRENT_PACKAGES_DIR}/debug/include
${CURRENT_PACKAGES_DIR}/debug/share
"${CURRENT_PACKAGES_DIR}/debug/include"
"${CURRENT_PACKAGES_DIR}/debug/share"
)

if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
vcpkg_replace_string(
${CURRENT_PACKAGES_DIR}/include/raylib.h
"defined(USE_LIBTYPE_SHARED)"
"1 // defined(USE_LIBTYPE_SHARED)"
)
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/raylib.h" "defined(USE_LIBTYPE_SHARED)" "1")
endif()

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
16 changes: 11 additions & 5 deletions ports/raylib/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
{
"name": "raylib",
"version": "5.0",
"port-version": 1,
"description": "A simple and easy-to-use library to enjoy videogames programming",
"homepage": "https://github.com/raysan5/raylib",
"license": "Zlib",
"supports": "!uwp",
"supports": "!arm32 & !uwp",
"dependencies": [
"cgltf",
"dirent",
"drlibs",
{
"name": "glfw3",
"platform": "!(windows | emscripten)"
"platform": "!(android | emscripten)"
},
"miniaudio",
"mmx",
"nanosvg",
"qoi",
"stb",
{
"name": "vcpkg-cmake",
"host": true
Expand All @@ -23,9 +32,6 @@
"use-audio"
],
"features": {
"hidpi": {
"description": "Support high-DPI displays"
},
"use-audio": {
"description": "Build raylib with audio module"
}
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -7702,7 +7702,7 @@
},
"raylib": {
"baseline": "5.0",
"port-version": 0
"port-version": 1
},
"rbdl": {
"baseline": "3.3.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/r-/raylib.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "6ef397a5c5afb217736842e45d9610d084a1fb2d",
"version": "5.0",
"port-version": 1
},
{
"git-tree": "7cf5ce249c066d11ea5afe9ed15972663992c0f2",
"version": "5.0",
Expand Down

0 comments on commit a2367ce

Please sign in to comment.