diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2018-10-19 23:38:14 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2018-10-28 23:07:08 +0100 |
commit | 563a444ea9f19ec55b53e82f17f5b97357e56691 (patch) | |
tree | ea0d691c3ea79fa22a75a8d1a406b46cbf9bc61b /_oasis | |
parent | e5fc2699660b440fa02260091b5bd019866f081c (diff) | |
download | ocaml-sid-563a444ea9f19ec55b53e82f17f5b97357e56691.tar.gz |
_oasis: opam: nix: add build and env setup
Diffstat (limited to '_oasis')
-rw-r--r-- | _oasis | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -0,0 +1,27 @@ +OASISFormat: 0.4 +Name: sid +Version: 0 +Synopsis: non +Authors: phg +License: GPL-3 +BuildTools: ocamlbuild +Plugins: META (0.4), DevFiles (0.4) + +Library "sid" + Path: . + Modules: Sid + CompiledObject: native + BuildDepends: stdint + FindlibName: sid + +Executable "sid_test" + Path: . + Build$: flag(tests) + MainIs: sid_test.ml + BuildDepends: stdint, oUnit + +Test "test_sid" + Run$: flag(tests) + TestTools: sid_test + Command: $sid_test + |