summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMai <mai.iam2048@gmail.com>2022-12-11 21:09:52 +0000
committerGitHub <noreply@github.com>2022-12-11 21:09:52 +0000
commit0c531ff911606cdbed0ea1865fd8beb9a3f45874 (patch)
tree54851b76928d53e58528b6bf5464f6095ca6e6f7 /src
parentd5684dbe7d7a562a79e267350ef9a45f23dfb817 (diff)
parent8d1d6e149f4929227b00084f7a14f4c701348119 (diff)
Merge pull request #9419 from liamwhite/no-gl
cmake: make OpenGL loader optional
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt
index d23eb2907..4a7d35617 100644
--- a/src/yuzu/CMakeLists.txt
+++ b/src/yuzu/CMakeLists.txt
@@ -402,7 +402,7 @@ if (MSVC)
copy_yuzu_FFmpeg_deps(yuzu)
endif()
-if (NOT APPLE)
+if (NOT APPLE AND ENABLE_OPENGL)
target_compile_definitions(yuzu PRIVATE HAS_OPENGL)
endif()