mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-06 23:57:22 +02:00
20 lines
323 B
Meson
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,
|
|
)
|