forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[raylib] Cleanup, fix platform support (microsoft#40209)
- Loading branch information
Showing
6 changed files
with
73 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters