File: dune

package info (click to toggle)
ocaml-dune 3.20.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 33,564 kB
  • sloc: ml: 175,178; asm: 28,570; ansic: 5,251; sh: 1,096; lisp: 625; makefile: 148; python: 125; cpp: 48; javascript: 10
file content (57 lines) | stat: -rw-r--r-- 1,347 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
(executable
 (name copyfile)
 (modules copyfile)
 (libraries stdune))

(executable
 (name main)
 (modules main)
 (libraries dune_bench core_bench.inline_benchmarks))

(executable
 (name memo_bench_main)
 (allow_overlapping_dependencies)
 (modules memo_bench_main)
 (libraries memo_bench core_bench.inline_benchmarks))

(library
 (name thread_pool_bench)
 (modules thread_pool_bench)
 (library_flags -linkall)
 (preprocess
  (pps ppx_bench))
 (libraries dune_thread_pool unix threads.posix core_bench.inline_benchmarks))

(executable
 (name thread_pool_bench_main)
 (allow_overlapping_dependencies)
 (modules thread_pool_bench_main)
 (libraries thread_pool_bench core_bench.inline_benchmarks))

(library
 (name digest_bench)
 (modules digest_bench)
 (library_flags -linkall)
 (preprocess
  (pps ppx_bench))
 (libraries dune_digest stdune unix core_bench.inline_benchmarks))

(executable
 (name digest_bench_main)
 (allow_overlapping_dependencies)
 (modules digest_bench_main)
 (libraries digest_bench core_bench.inline_benchmarks))

(library
 (name path_bench)
 (modules path_bench)
 (library_flags -linkall)
 (preprocess
  (pps ppx_bench))
 (libraries base stdune core_bench.inline_benchmarks))

(executable
 (name path_bench_main)
 (allow_overlapping_dependencies)
 (modules path_bench_main)
 (libraries path_bench core_bench.inline_benchmarks))