File: meson.build

package info (click to toggle)
gamemode 1.8.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 640 kB
  • sloc: ansic: 5,314; sh: 101; xml: 34; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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,
)