From 37e0ffa624b13ae72aeda7db3f39bd8571048c1c Mon Sep 17 00:00:00 2001 From: PancakeTAS Date: Sat, 19 Jul 2025 14:37:05 +0200 Subject: [PATCH] add native wayland backend --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 80be538..f51d6a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,6 +9,10 @@ add_compile_options(-fPIC -Wno-tautological-compare -Wno-undef) +set(BUILD_EXAMPLES OFF) +set(GLFW_BUILD_WAYLAND ON) +set(GLFW_BUILD_X11 ON) + add_subdirectory(thirdparty/dxbc EXCLUDE_FROM_ALL) add_subdirectory(thirdparty/pe-parse/pe-parser-library EXCLUDE_FROM_ALL) add_subdirectory(thirdparty/toml11 EXCLUDE_FROM_ALL)