mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-06 20:02:18 +00:00
c6592c887a
* fix: patch gamescope builds for f44 (#10472) (cherry picked from commit431538c740) * feat: Build terra-gamescope from OGC repository --------- (cherry picked from commit79d3e9c244) Signed-off-by: Kyle Gospodnetich <me@kylegospodneti.ch> Signed-off-by: madomado <madonuko@outlook.com> Co-authored-by: Kyle Gospodnetich <me@kylegospodneti.ch> Co-authored-by: Ryan Bateman <rybateman@gmail.com> Co-authored-by: madomado <madonuko@outlook.com>
29 lines
859 B
Diff
29 lines
859 B
Diff
From 1a37d7113ed29ede9dcd30be16898b10464cd76e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= <fzatlouk@redhat.com>
|
|
Date: Wed, 28 May 2025 12:19:05 +0200
|
|
Subject: [PATCH] Use system stb/glm
|
|
|
|
---
|
|
meson.build | 6 ++----
|
|
1 file changed, 2 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index c300b07..3044e54 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -47,10 +47,8 @@ dep_x11 = dependency('x11')
|
|
dep_wayland = dependency('wayland-client')
|
|
vulkan_dep = dependency('vulkan')
|
|
|
|
-glm_proj = subproject('glm')
|
|
-glm_dep = glm_proj.get_variable('glm_dep')
|
|
-stb_proj = subproject('stb')
|
|
-stb_dep = stb_proj.get_variable('stb_dep')
|
|
+glm_dep = dependency('glm')
|
|
+stb_dep = dependency('stb')
|
|
|
|
if get_option('enable_openvr_support')
|
|
openvr_dep = dependency('openvr', version: '>= 2.7', required : false)
|
|
--
|
|
2.49.0
|