gamemode/example/meson.build
Stephan Lachnit d8337aeb05 various variable naming improvements
This makes it more clear that libgamemode and libgamemodeauto are indeed libraries. Also, the misleading name `libgamemode_dep` has been renamed to `gamemode_dep`, which now also includes the dependency on libdl. The misleading `libgamemode_includes` variable name has also been changed.

Signed-off-by: Stephan Lachnit <stephanlachnit@protonmail.com>
2020-06-23 09:18:14 +01:00

19 lines
305 B
Meson

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