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 (19 lines) | stat: -rw-r--r-- 336 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
subdir('support')
subdir('libgitg')
subdir('gitg')

test_names = [
  'diff-view',
  'repository-list-box',
  'progress-bin',
]

foreach test_name: test_names
  executable(
    'tests-' + test_name,
    sources: test_name + '.vala',
    include_directories: top_inc,
    dependencies: libgitg_dep,
    c_args: warn_flags,
  )
endforeach