From e9c0fe563c4c3b2561d4c6f1e22c57057ecf10a7 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Mon, 19 Feb 2024 21:33:33 -0500 Subject: [PATCH] Added additional dependencies --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 82d5d5f..4d7568a 100644 --- a/meson.build +++ b/meson.build @@ -2,6 +2,6 @@ project('Pong', 'cpp') add_global_arguments('-g', '-Wall', '-pedantic', '-Wno-unused-function', '-Werror', language : 'cpp') raylib = dependency('raylib') executable('pong', - 'main.cpp', 'easysock.cpp', 'sock.cpp','paddle.cpp', 'ball.cpp', 'numeric_base.cpp', + 'main.cpp', 'easysock.cpp', 'sock.cpp','paddle.cpp', 'ball.cpp', 'numeric_base.cpp', 'connect_code.cpp', 'server.cpp', 'client.cpp', dependencies: raylib, )