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.
12 lines
405 B
Meson
12 lines
405 B
Meson
project('Pong', ['cpp', 'c'])
|
|
add_global_arguments('-g', '-Wall', '-pedantic', '-Wno-unused-function', '-Werror', language : ['cpp', 'c'])
|
|
|
|
raylib = dependency('raylib', native: true)
|
|
static_lib_path = ''
|
|
|
|
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,
|
|
)
|