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

Rename a bunch of files to make the consistent Create two new subdirectories for common code, and utilities
32 lines
633 B
Meson
32 lines
633 B
Meson
# Main daemon
|
|
daemon_sources = [
|
|
'gamemoded.c',
|
|
'gamemode-context.c',
|
|
'gamemode-ioprio.c',
|
|
'gamemode-sched.c',
|
|
'gamemode-wine.c',
|
|
'gamemode-tests.c',
|
|
'gamemode-gpu.c',
|
|
'gamemode-dbus.c',
|
|
'gamemode-config.c',
|
|
]
|
|
|
|
gamemoded_includes = libgamemode_includes
|
|
gamemoded_includes += config_h_dir
|
|
|
|
executable(
|
|
'gamemoded',
|
|
sources: daemon_sources,
|
|
dependencies: [
|
|
link_daemon_common,
|
|
dep_threads,
|
|
dep_systemd,
|
|
inih_dependency,
|
|
libdl,
|
|
],
|
|
include_directories: [
|
|
gamemoded_includes,
|
|
include_daemon_common,
|
|
],
|
|
install: true,
|
|
) |