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.
8 lines
287 B
Meson
8 lines
287 B
Meson
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',
|
|
dependencies: raylib,
|
|
)
|