time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

manifest.json (939B)


      1 {
      2 	"options": {
      3 		"task": "build"
      4 	},
      5 	"fields": [
      6 		{
      7 			"field": "src",
      8 			"resolve": true,
      9 			"relative": true
     10 		},
     11 		{
     12 			"field": "include",
     13 			"resolve": true,
     14 			"relative": true
     15 		},
     16 		{
     17 			"field": "libraries",
     18 			"resolve": false,
     19 			"relative": false
     20 		},
     21 		{
     22 			"field": "libpath",
     23 			"resolve": true,
     24 			"relative": false
     25 		}
     26 	],
     27 	"confs": [
     28 		{
     29 			"task": "build",
     30 			"src": [
     31 				"./src/sqrt.c"
     32 			],
     33 			"include": [
     34 				"./include"
     35 			],
     36 			"libraries": [
     37 				"-lm"
     38 			],
     39 			"libpath": [],
     40 			"dependencies": [
     41 				"@stdlib/math/base/napi/unary"
     42 			]
     43 		},
     44 		{
     45 			"task": "benchmark",
     46 			"src": [
     47 				"./src/sqrt.c"
     48 			],
     49 			"include": [
     50 				"./include"
     51 			],
     52 			"libraries": [
     53 				"-lm"
     54 			],
     55 			"libpath": [],
     56 			"dependencies": []
     57 		},
     58 		{
     59 			"task": "examples",
     60 			"src": [
     61 				"./src/sqrt.c"
     62 			],
     63 			"include": [
     64 				"./include"
     65 			],
     66 			"libraries": [
     67 				"-lm"
     68 			],
     69 			"libpath": [],
     70 			"dependencies": []
     71 		}
     72 	]
     73 }