build: renamed utilities to tools

This commit is contained in:
Hermet Park 2020-09-17 20:53:25 +09:00
parent 81be1930a6
commit f11a4d9b7b
2 changed files with 3 additions and 3 deletions

View file

@ -22,8 +22,8 @@ option('bindings',
value: ['capi'],
description: 'Enable C API binding')
option('utilities',
option('tools',
type: 'array',
choices: ['', 'svg2png'],
value: [''],
description: 'Enable building utilities')
description: 'Enable building ThorVG Tools')

View file

@ -1,4 +1,4 @@
if get_option('utilities').contains('svg2png') == true
if get_option('tools').contains('svg2png') == true
subdir('svg2png')
endif