File: meson.build

package info (click to toggle)
gnome-software 49.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,164 kB
  • sloc: ansic: 98,615; xml: 3,630; python: 1,055; makefile: 75; sh: 28
file content (24 lines) | stat: -rw-r--r-- 432 bytes parent folder | download | duplicates (3)
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,
)