File: meson.build

package info (click to toggle)
gamemode 1.2-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 520 kB
  • sloc: ansic: 1,773; sh: 309; cpp: 101; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 322 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Simple meson build
project('inih', 'c')

inih_includes = include_directories('.')

inih = static_library(
    'inih',
    sources: [
        'ini.c',
    ],
    include_directories: inih_includes,
    install: false,
)

inih_dependency = declare_dependency(
    include_directories: inih_includes,
    link_with: inih
)