You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
369 B
Meson
9 lines
369 B
Meson
project('Pong', ['cpp', 'c'])
|
|
add_global_arguments('-g', '-Wall', '-pedantic', '-Wno-unused-function', '-Werror', language : ['cpp', 'c'])
|
|
raylib = dependency('raylib')
|
|
executable('pong',
|
|
'main.cpp', 'easysock.cpp', 'sock.cpp','paddle.cpp', 'ball.cpp', 'numeric_base.cpp', 'connect_code.cpp', 'server.cpp', 'client.cpp',
|
|
'serialization.c',
|
|
dependencies: raylib,
|
|
)
|