File tree 5 files changed +47
-14
lines changed
5 files changed +47
-14
lines changed Original file line number Diff line number Diff line change 31
31
(name parser_util))
32
32
33
33
( package
34
- (name pikchr ))
34
+ (name site_gen ))
35
35
36
36
( package
37
- (name site_gen ))
37
+ (name frontend ))
38
38
39
39
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ synopsis: "Frontend component of CS208 Logic"
3
+ depends: [
4
+ "ocaml"
5
+ "dune" {>= "3.7"}
6
+ "msat"
7
+ "menhir"
8
+ "ulmus"
9
+ "parser_util"
10
+ "ppx_monoid"
11
+ "ppx_deriving"
12
+ "ppx_inline_test"
13
+ "fol_formula"
14
+ ]
15
+ pin-depends: [
16
+ [ "ulmus.~dev"
17
+ "git+https://github.com/bobatkey/ulmus#57e1c963b456a59c7f0f2385c03f8155b7af67fc"
18
+ ]
19
+ [ "html_sig.~dev"
20
+ "git+https://github.com/bobatkey/ulmus#57e1c963b456a59c7f0f2385c03f8155b7af67fc"
21
+ ]
22
+ ]
23
+ build: [
24
+ ["dune" "subst"] {dev}
25
+ [
26
+ "dune"
27
+ "build"
28
+ "-p"
29
+ name
30
+ "-j"
31
+ jobs
32
+ "@install"
33
+ "@runtest" {with-test}
34
+ "@doc" {with-doc}
35
+ ]
36
+ ]
Original file line number Diff line number Diff line change 7
7
natural_deduction
8
8
nd_focusing_widget
9
9
model_checker_widget))
10
+
11
+ (install
12
+ (files frontend.bc.js)
13
+ (section share)
14
+ (package frontend))
Original file line number Diff line number Diff line change 4
4
(libraries ctypes ctypes-foreign)
5
5
(extra_objects pikchr))
6
6
7
- (install
8
- (files pikchr.o)
9
- (section lib)
10
- (package pikchr))
7
+ ; (install
8
+ ; (files pikchr.o)
9
+ ; (section lib)
10
+ ; (package pikchr))
11
11
12
12
(rule
13
13
(targets pikchr.o)
Original file line number Diff line number Diff line change @@ -21,14 +21,6 @@ depends: [
21
21
"ppx_deriving"
22
22
"ppx_inline_test"
23
23
]
24
- pin-depends: [
25
- [ "ulmus.~dev"
26
- "git+https://github.com/bobatkey/ulmus#57e1c963b456a59c7f0f2385c03f8155b7af67fc"
27
- ]
28
- [ "html_sig.~dev"
29
- "git+https://github.com/bobatkey/ulmus#57e1c963b456a59c7f0f2385c03f8155b7af67fc"
30
- ]
31
- ]
32
24
build: [
33
25
["dune" "subst"] {dev}
34
26
[
You can’t perform that action at this time.
0 commit comments