aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-05-04 20:36:34 +0200
committerdec05eba <dec05eba@protonmail.com>2025-05-04 21:24:07 +0200
commit36c74d3411a543c4452d367275182e0a8619cec4 (patch)
tree719bda3bd2c97472c54122253070ce39835910f3 /meson.build
parent2ca5f3361c341dee5087a109a721103dd95869ff (diff)
Add -replay-storage option to specify if temporary replay data should be stored in ram or disk
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 5874b95..2783d6b 100644
--- a/meson.build
+++ b/meson.build
@@ -26,6 +26,9 @@ src = [
'src/window/window.c',
'src/window/x11.c',
'src/window/wayland.c',
+ 'src/replay_buffer/replay_buffer.c',
+ 'src/replay_buffer/replay_buffer_ram.c',
+ 'src/replay_buffer/replay_buffer_disk.c',
'src/egl.c',
'src/cuda.c',
'src/xnvctrl.c',
@@ -40,7 +43,6 @@ src = [
'src/image_writer.c',
'src/args_parser.c',
'src/defs.c',
- 'src/replay_buffer.c',
'src/sound.cpp',
'src/main.cpp',
]