playergame/meson.build
zombie 52c55c07f0
switched to meson bc @quantum likes it more
i myself find it better and less gay than cmake
like cmake seems more for cpp (it still works with both)
meanwhile meson *feels* like it supports both equally
2022-03-03 01:18:26 -05:00

4 lines
126 B
Meson

project('playergame', 'c')
cursesdep = dependency('curses')
executable('playergame', 'src/main.c', dependencies : cursesdep)