Setup Scala

This commit is contained in:
Paul-Henri Froidmont 2023-12-04 08:02:51 +01:00
parent 8dec7591dd
commit 13a8e74189
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
37 changed files with 290 additions and 187 deletions

35
ocaml/tanenbaum.opam Normal file
View file

@ -0,0 +1,35 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1.0"
synopsis: "OCaml Advent of Code starter project"
maintainer: ["Sixstring982"]
authors: ["Sixstring982"]
license: "BSD-3-Clause"
tags: ["advent-of-code"]
homepage: "https://github.com/sixstring982/tanenbaum"
doc: "https://sixstring982.github.io/tanenbaum"
bug-reports: "https://github.com/sixstring982/tanenbaum/issues"
depends: [
"ocaml"
"reason"
"dune" {>= "3.7"}
"cmdliner" {>= "1.2.0"}
"piaf" {>= "0.1.0"}
"fmt" {>= "0.9.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/sixstring982/tanenbaum.git"