#								-*-conf-*-
OASISFormat: 0.3
Name:        omd
Version:     1.0.2
Synopsis:    A Markdown frontend in pure OCaml.
Description: This Markdown library is implemented using only pure OCaml 
  (including I/O operations provided by the standard OCaml compiler distribution).
  OMD is meant to be as faithful as possible to the original Markdown.
  Additionally, OMD implements a few Github markdown features, an extension mechanism,
  and a few other features.
  Note that the opam package installs both the OMD library and the command line tool `omd`.
  Note that The library interface of 1.0.x is only partially compatible with 0.9.x.
Authors:     Philippe Wang <philippe.wang@gmail.com>
Maintainers: Philippe Wang <philippe.wang@gmail.com>
License:     ISC
Homepage:    https://github.com/ocaml/omd
Plugins:     META (0.3), StdFiles (0.3)

Library "omd"
  Path:         src
  BuildTools:   ocamlbuild
  BuildDepends: bigarray
  Modules:      Omd_utils, Omd_representation, Omd_backend, Omd_lexer, Omd_parser, Omd

Executable "omd"
  Path:         src
  BuildTools:   ocamlbuild
  MainIs:       omd_main.ml
  BuildDepends: omd
  CompiledObject: best

SourceRepository master
  Type:       git
  Location:   https://github.com/ocaml/omd.git
  Browser:    https://github.com/ocaml/omd

Executable "test_cow"
  Path:         tests/cow
  BuildTools:   ocamlbuild
  MainIs:  test.ml
  BuildDepends: omd
  CompiledObject: best

Test "cow"
  Type: Custom (0.0.1)
  Command: $test_cow

Executable "test_spec"
  Path:         tests
  BuildTools:   ocamlbuild
  MainIs:  	test_spec.ml
  BuildDepends: omd
  CompiledObject: best

Test "spec"
  Type: Custom (0.0.1)
  Command: $test_spec

# N.B. If the number of lines in this file changes, don't forget to adapt the Makefile!
