File: meson.build

package info (click to toggle)
gitg 44-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 19,176 kB
  • sloc: ansic: 1,636; ruby: 1,445; sh: 314; python: 261; xml: 57; makefile: 15
file content (27 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
sources = support_sources + files(
  'main.vala',
  'test-commit.vala',
  'test-date.vala',
  'test-encoding.vala',
  'test-stage.vala',
)

deps = [
  gitg_assert_dep,
  libgitg_dep,
]

vala_flags = '--disable-warnings'

test_unit = 'tests-libgitg'

exe = executable(
  test_unit,
  sources: sources,
  include_directories: top_inc,
  dependencies: deps,
  c_args: warn_flags,
  vala_args: vala_flags,
)

test(test_unit, exe)