summaryrefslogtreecommitdiffstats
path: root/lib/tools/meson.build
blob: 68447757ea6519b4d2edca35bbf922dc6c99bd82 (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
# Test program to profile performance of the key-colors functions
executable(
  'profile-key-colors',
  sources : [
    'profile-key-colors.c',
    '../gs-key-colors.c',
    '../gs-key-colors.h',
  ],
  include_directories : [
    include_directories('..'),
    include_directories('../..'),
  ],
  dependencies : [
    glib,
    gtk,
    gdk_pixbuf,
    libm,
  ],
  c_args : [
    '-Wall',
    '-Wextra',
  ],
  install: false,
)