File: meson.build

package info (click to toggle)
flatseal 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,796 kB
  • sloc: javascript: 5,161; xml: 85; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
jasmine = find_program('jasmine', required: false)
if jasmine.found()
  env = environment()
  env.set('LC_ALL', 'C')

  tests = join_paths(meson.current_source_dir(), 'src')

  test('Jasmine tests', jasmine,
    env: env,
    args: ['--no-config', '--verbose', '--no-color', tests])
endif