27 lines
702 B
Diff
27 lines
702 B
Diff
|
From 6b71db73fb1aef30ad06e576d2b2377052ed9f56 Mon Sep 17 00:00:00 2001
|
||
|
From: Georges Basile Stavracas Neto <georges.stavracas@gmail.com>
|
||
|
Date: Sat, 11 Apr 2020 23:49:05 -0300
|
||
|
Subject: [PATCH 05/15] deps/glad: Make X11 required as well
|
||
|
|
||
|
To keep consistency with the EGL line
|
||
|
---
|
||
|
deps/glad/CMakeLists.txt | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/deps/glad/CMakeLists.txt b/deps/glad/CMakeLists.txt
|
||
|
index 9cb7e8fd..a31a5b91 100644
|
||
|
--- a/deps/glad/CMakeLists.txt
|
||
|
+++ b/deps/glad/CMakeLists.txt
|
||
|
@@ -3,7 +3,7 @@ project(glad)
|
||
|
find_package(OpenGL)
|
||
|
|
||
|
if(NOT WIN32 AND NOT APPLE)
|
||
|
- find_package(X11)
|
||
|
+ find_package(X11 REQUIRED)
|
||
|
find_package(EGL REQUIRED)
|
||
|
endif()
|
||
|
|
||
|
--
|
||
|
2.28.0
|
||
|
|