File tree Expand file tree Collapse file tree 4 files changed +28
-6
lines changed Expand file tree Collapse file tree 4 files changed +28
-6
lines changed Original file line number Diff line number Diff line change 1
1
# dune files
2
2
_build
3
- * .opam
Original file line number Diff line number Diff line change 1
- (lang dune 3 .4 )
1
+ (lang dune 3 .8 )
2
2
(name hello)
3
3
( license MIT-0)
4
4
5
5
; https://dune.readthedocs.io/en/stable/opam.html#generating-opam-files
6
- ( generate_opam_files true )
6
+ ( generate_opam_files)
7
+ ( opam_file_location inside_opam_directory)
7
8
8
9
( cram enable)
9
10
Original file line number Diff line number Diff line change 55
55
56
56
strictDeps = true ;
57
57
58
- preBuild = ''
59
- dune build hello.opam
60
- '' ;
58
+ # preBuild = ''
59
+ # dune build hello.opam
60
+ # '';
61
61
} ;
62
62
} ) ;
63
63
Original file line number Diff line number Diff line change
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "Friendly greetings"
4
+ license: "MIT-0"
5
+ depends: [
6
+ "dune" {>= "3.8"}
7
+ "odoc" {with-doc}
8
+ ]
9
+ build: [
10
+ ["dune" "subst"] {dev}
11
+ [
12
+ "dune"
13
+ "build"
14
+ "-p"
15
+ name
16
+ "-j"
17
+ jobs
18
+ "@install"
19
+ "@runtest" {with-test}
20
+ "@doc" {with-doc}
21
+ ]
22
+ ]
You can’t perform that action at this time.
0 commit comments