File: meson.build

package info (click to toggle)
celluloid 0.29-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,760 kB
  • sloc: ansic: 18,905; xml: 325; python: 21; makefile: 8
file content (19 lines) | stat: -rw-r--r-- 609 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
test_option_parser = executable(
  'test-option-parser',
  ['..' / 'src' / 'celluloid-option-parser.c', 'test-option-parser.c'],
  include_directories: include_directories('..' / 'src'),
  dependencies: libgtk
)

test_playlist_model = executable(
  'test-playlist-model',
  generated_marshal_sources +
  [ '..' / 'src' / 'celluloid-playlist-model.c',
    '..' / 'src' / 'celluloid-playlist-item.c',
    'test-playlist-model.c'],
  include_directories: include_directories('..' / 'src'),
  dependencies: libgtk
)

test('test-option-parser', test_option_parser)
test('test-playlist-model', test_playlist_model)