24 lines
432 B
Meson
24 lines
432 B
Meson
# 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,
|
|
)
|