Introduced a new layer of "panels" that produce panes

This commit is contained in:
cqc
2021-09-01 04:40:43 -05:00
parent df39308b7a
commit 3004a87571
5 changed files with 589 additions and 315 deletions

22
dune
View File

@ -19,14 +19,28 @@
ocaml-compiler-libs.bytecomp
ocaml-compiler-libs.toplevel))
(executable
(name irc)
(modes byte)
(modules irc)
(libraries
fmt
topinf
irc-client
irc-client-lwt
irc-client-unix
irc-client-tls
))
(executable
(name boot)
(modes byte)
(modules boot)
(link_flags (-linkall))
(libraries
lambda-term
topinf))
lambda-term
topinf))
(library
(name topinf)
@ -40,6 +54,10 @@
zed
lambda-term
irmin-unix
irc-client
irc-client-lwt
irc-client-unix
irc-client-tls
ocaml-compiler-libs.common
ocaml-compiler-libs.bytecomp
ocaml-compiler-libs.toplevel))