mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-03 06:07:20 +02:00

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>
19 lines
305 B
Meson
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,
|
|
)
|