summaryrefslogtreecommitdiff
path: root/sand.opam
diff options
context:
space:
mode:
authorFederico Igne <undyamon@disroot.org>2023-12-30 17:54:38 +0100
committerFederico Igne <undyamon@disroot.org>2023-12-30 17:55:02 +0100
commit5696fd843de1bfeae6d9d74a478181b943bbb574 (patch)
tree6a5583a1d06755ac21efd70e78b843315c9f79b6 /sand.opam
parenteda08bdd6fd3b2e441b5e9f1ad6cca45734d77cd (diff)
downloadsandy-5696fd843de1bfeae6d9d74a478181b943bbb574.tar.gz
sandy-5696fd843de1bfeae6d9d74a478181b943bbb574.zip
feat: add project structure
Diffstat (limited to 'sand.opam')
-rw-r--r--sand.opam26
1 files changed, 26 insertions, 0 deletions
diff --git a/sand.opam b/sand.opam
new file mode 100644
index 0000000..4bbb344
--- /dev/null
+++ b/sand.opam
@@ -0,0 +1,26 @@
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "A simple editor inspired by 'kilo'."
4authors: ["Federico Igne"]
5homepage: "https://github.com/username/reponame"
6bug-reports: "https://github.com/username/reponame/issues"
7depends: [
8 "ocaml"
9 "dune" {>= "3.7"}
10 "odoc" {with-doc}
11]
12build: [
13 ["dune" "subst"] {dev}
14 [
15 "dune"
16 "build"
17 "-p"
18 name
19 "-j"
20 jobs
21 "@install"
22 "@runtest" {with-test}
23 "@doc" {with-doc}
24 ]
25]
26dev-repo: "git+https://github.com/username/reponame.git"