gamemode/example/meson.build
Stephan Lachnit e1ae78e346 install example
Signed-off-by: Stephan Lachnit <stephanlachnit@protonmail.com>
2020-05-12 19:25:57 +01:00

14 lines
218 B
Meson

# An example game
executable(
'gamemode-simulate-game',
sources: [
'main.c',
],
dependencies: [
libgamemode_dep,
libdl,
],
install: true,
install_dir: path_bindir,
)