odin-blend2d

Odin bindings to Blend2D
Log | Files | Refs | README | LICENSE

build-config.json (973B)


      1 {
      2   "diagnostics": {
      3     "asan": { "definitions": ["ASMJIT_SANITIZE=address"] },
      4     "msan": { "definitions": ["ASMJIT_SANITIZE=memory"] },
      5     "ubsan": { "definitions": ["ASMJIT_SANITIZE=undefined"] }
      6   },
      7 
      8   "valgrind_arguments": [
      9     "--leak-check=full",
     10     "--show-reachable=yes",
     11     "--track-origins=yes"
     12   ],
     13 
     14   "tests": [
     15     { "optional": true, "cmd": ["asmjit_test_runner", "--quick"] },
     16     { "optional": true, "cmd": ["asmjit_test_environment"] },
     17     { "optional": true, "cmd": ["asmjit_test_assembler"] },
     18     { "optional": true, "cmd": ["asmjit_test_assembler", "--validate"] },
     19     { "optional": true, "cmd": ["asmjit_test_emitters"] },
     20     { "optional": true, "cmd": ["asmjit_test_compiler"] },
     21     { "optional": true, "cmd": ["asmjit_test_unicompiler"] },
     22     { "optional": true, "cmd": ["asmjit_test_instinfo"] },
     23     { "optional": true, "cmd": ["asmjit_test_x86_sections"] },
     24     { "optional": true, "cmd": ["asmjit_bench_codegen", "--quick"] }
     25   ]
     26 }