Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions dune
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
(include_subdirs unqualified)

(env
(_
(flags
(:standard -warn-error -a))))

(executables
(names main tests fuzzer stats linearbaseline matcher benchmark)
(libraries
unix
ocaml_intrinsics
yojson))
4 changes: 4 additions & 0 deletions dune-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(lang dune 3.0)
(name regelk)
(generate_opam_files true)
(using menhir 2.1)
24 changes: 15 additions & 9 deletions regelk.opam
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "OCaml Linear Engine for JavaScript Regexes"
authors: ["Aurèle Barrière" "Clément Pit-Claudel"]
homepage: "https://github.com/epfl-systemf/RegElk"
depends: [
"ocaml" {>= "5.0.0"}
"yojson" {= "2.1.0"}
"menhir" {= "20220210"}
"core" {= "v0.15.1"}
"core_unix" {= "v0.15.2"}
"core_bench" {= "v0.15.0"}
"ocamlbuild" {= "0.14.1"}
"ocaml_intrinsics" {= "v0.15.2"}
"ocamlfind" {= "1.9.8"}
"dune" {>= "3.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]