svg_loader: typo fixed
[platform/core/graphics/tizenvg.git] / meson_options.txt
index daf3923..15dc6ee 100644 (file)
@@ -1,11 +1,54 @@
 option('engines',
    type: 'array',
    choices: ['sw', 'gl'],
-   value: ['sw', 'gl'],
+   value: ['sw'],
    description: 'Enable Rasterizer Engine in thorvg')
 
 option('loaders',
    type: 'array',
-   choices: ['svg'],
-   value: ['svg'],
-   description: 'Enable Vector File Loader in thorvg')
+   choices: ['', 'tvg', 'svg', 'png', 'jpg', 'all'],
+   value: ['svg', 'tvg', 'png', 'jpg'],
+   description: 'Enable File Loaders in thorvg')
+
+option('savers',
+   type: 'array',
+   choices: ['', 'tvg'],
+   value: [''],
+   description: 'Enable File Savers in thorvg')
+
+option('vector',
+   type: 'boolean',
+   value: false,
+   description: 'Enable CPU Vectorization(SIMD) in thorvg')
+
+option('bindings',
+   type: 'array',
+   choices: ['', 'capi'],
+   value: ['capi'],
+   description: 'Enable C API binding')
+
+option('tools',
+   type: 'array',
+   choices: ['', 'svg2tvg', 'svg2png', 'all'],
+   value: [''],
+   description: 'Enable building thorvg tools')
+
+option('examples',
+    type: 'boolean',
+    value: false,
+    description: 'Enable building examples')
+
+option('tests',
+   type: 'boolean',
+   value: false,
+   description: 'Enable building Unit Tests')
+
+option('log',
+    type: 'boolean',
+    value: false,
+    description: 'Enable log message')
+
+option('static',
+    type: 'boolean',
+    value: false,
+    description: 'Force to use static linking modules in thorvg')