From f98c9ddb9113888c0b8321571f617a2bff838cdb Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Mon, 6 Jan 2025 11:56:12 -0500 Subject: [PATCH] Make timcaster work so people can walk around inside their computer's ram until it crashes. --- meson.build | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/meson.build b/meson.build index 48dc97f..3563aa0 100644 --- a/meson.build +++ b/meson.build @@ -5,6 +5,8 @@ catch2 = dependency('catch2-with-main') fmt = dependency('fmt') json = dependency('nlohmann_json') sfml = dependency('sfml') +sdl2 = dependency('sdl2') +sdl2main = dependency('sdl2main') dependencies = [ fmt, json, sfml @@ -23,3 +25,8 @@ executable('raycaster', [ 'raycaster.cpp', ], dependencies: dependencies) + +executable('timcaster', [ + './scratchpad/timcaster.cpp', + ], + dependencies: dependencies + [sdl2, sdl2main])