summaryrefslogtreecommitdiff
path: root/src/wm-tester/meson.build
blob: 14d8c8bf042089018acd8fb80b52eae8d4f0d799 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
test1 = executable('wm-tester',
  'main.c',
  include_directories : [
    include_directories('.'),
    include_directories('..'),
    ],
  dependencies: marco_deps,
  link_with : [
    libmarco
    ],
)

test2 = executable('test-gravity',
  'test-gravity.c',
  include_directories : [
    include_directories('.'),
    include_directories('..'),
    ],
  dependencies: marco_deps,
  link_with : [
    libmarco
    ],
)

test3 = executable('test-resizing',
  'test-resizing.c',
  include_directories : [
    include_directories('.'),
    include_directories('..'),
    ],
  dependencies: marco_deps,
  link_with : [
    libmarco
    ],
)

test4  = executable('focus-window',
  'focus-window.c',
  include_directories : [
    include_directories('.'),
    include_directories('..'),
    ],
  dependencies: marco_deps,
  link_with : [
    libmarco
    ],
)

test5 = executable('test-size-hints',
  'test-size-hints.c',
  include_directories : [
    include_directories('.'),
    include_directories('..'),
    ],
  dependencies: marco_deps,
  link_with : [
    libmarco
    ],
)

test('wm-tester', test1)
test('test-gravity',  test2)
test('test-resizing', test3)
test('focus-window',  test4)
test('test-size-hints',  test5)