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

20 lines
323 B
Meson

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