sw_engine SwShape: Fix coding style
[platform/core/graphics/tizenvg.git] / meson_options.txt
index 7ceeb7e..15dc6ee 100644 (file)
@@ -6,20 +6,19 @@ option('engines',
 
 option('loaders',
    type: 'array',
-   choices: ['', 'svg', 'png', 'jpg', 'tvg_beta'],
-   value: ['svg', 'tvg_beta'],
+   choices: ['', 'tvg', 'svg', 'png', 'jpg', 'all'],
+   value: ['svg', 'tvg', 'png', 'jpg'],
    description: 'Enable File Loaders in thorvg')
 
 option('savers',
    type: 'array',
-   choices: ['', 'tvg_beta'],
-   value: ['tvg_beta'],
+   choices: ['', 'tvg'],
+   value: [''],
    description: 'Enable File Savers in thorvg')
 
-
-option('use_simd',
+option('vector',
    type: 'boolean',
-   value: true,
+   value: false,
    description: 'Enable CPU Vectorization(SIMD) in thorvg')
 
 option('bindings',
@@ -30,7 +29,7 @@ option('bindings',
 
 option('tools',
    type: 'array',
-   choices: ['', 'svg2tvg', 'svg2png'],
+   choices: ['', 'svg2tvg', 'svg2png', 'all'],
    value: [''],
    description: 'Enable building thorvg tools')
 
@@ -48,3 +47,8 @@ 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')