major refactor

This commit is contained in:
cqc
2021-08-10 00:05:00 -05:00
parent 548bc0da64
commit 4f191e2fae
16 changed files with 113 additions and 132 deletions

36
dune Normal file
View File

@ -0,0 +1,36 @@
(env
(dev
(flags (:standard -warn-error -A))))
(executable
(name main)
(modes byte)
(modules main)
(link_flags (-linkall))
(libraries
topinf
tsdl
tgls.tgles2
wall
zed
irmin-unix
ocaml-compiler-libs.common
ocaml-compiler-libs.bytecomp
ocaml-compiler-libs.toplevel))
(executable
(name test)
(modes byte)
(modules test)
(link_flags (-linkall))
(libraries
topinf))
(library
(name topinf)
(modes byte)
(modules topinf)
(libraries
fmt
ocaml-compiler-libs.toplevel))