Skip to content

Commit

Permalink
Don't forget to depend on lwt.unix
Browse files Browse the repository at this point in the history
  • Loading branch information
g2p committed Jun 23, 2017
1 parent 1f600ff commit 935ae7e
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 5 deletions.
12 changes: 8 additions & 4 deletions INSTALL.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
(* OASIS_START *)
(* DO NOT EDIT (digest: aeed0b6f112359d79bc311b45f9c68e2) *)
(* DO NOT EDIT (digest: 2bb15a412fdfea27826f8a0baabfde4a) *)

This is the INSTALL file for the csv distribution.

This package uses OASIS to generate its build system. See section OASIS for
full information.
full information.

Dependencies
============

In order to compile this package, you will need:
* ocaml for all, doc API

* ocaml (>= 4.00.1) for all, doc API
* findlib
* bytes for library csv, library csv_lwt
* lwt for library csv_lwt, executable test_lwt

Installing
==========
Expand All @@ -23,7 +27,7 @@ Installing
Uninstalling
============

1. Go to the root of the package
1. Go to the root of the package
2. Run 'ocaml setup.ml -uninstall'

OASIS
Expand Down
2 changes: 1 addition & 1 deletion _oasis
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Library csv_lwt
BuildTools: ocamlbuild
Modules: Csv_lwt
# InternalModules: Csv_utils, Csv_row
BuildDepends: lwt, bytes, csv
BuildDepends: lwt, lwt.unix, bytes, csv
FindlibName: lwt
FindlibParent: csv

Expand Down
57 changes: 57 additions & 0 deletions _tags
Original file line number Diff line number Diff line change
@@ -1,4 +1,61 @@
# OASIS_START
# DO NOT EDIT (digest: fa97cb5c66f1a6bc6c6b294d8104d75f)
# Ignore VCS directories, you can use the same kind of rule outside
# OASIS_START/STOP if you want to exclude directories that contains
# useless stuff for the build process
true: annot, bin_annot
<**/.svn>: -traverse
<**/.svn>: not_hygienic
".bzr": -traverse
".bzr": not_hygienic
".hg": -traverse
".hg": not_hygienic
".git": -traverse
".git": not_hygienic
"_darcs": -traverse
"_darcs": not_hygienic
# Library csv
"src/csv.cmxs": use_csv
<src/*.ml{,i,y}>: package(bytes)
# Library csv_lwt
"src/lwt/csv_lwt.cmxs": use_csv_lwt
<src/lwt/*.ml{,i,y}>: package(bytes)
<src/lwt/*.ml{,i,y}>: package(lwt)
<src/lwt/*.ml{,i,y}>: package(lwt.unix)
<src/lwt/*.ml{,i,y}>: use_csv
# Executable csvtool
<examples/csvtool.{native,byte}>: package(bytes)
<examples/csvtool.{native,byte}>: package(unix)
<examples/csvtool.{native,byte}>: use_csv
<examples/*.ml{,i,y}>: package(unix)
# Executable example
<examples/example.{native,byte}>: package(bytes)
<examples/example.{native,byte}>: use_csv
<examples/*.ml{,i,y}>: package(bytes)
<examples/*.ml{,i,y}>: use_csv
# Executable test
<tests/test.{native,byte}>: package(bytes)
<tests/test.{native,byte}>: use_csv
# Executable test_header
<tests/test_header.{native,byte}>: package(bytes)
<tests/test_header.{native,byte}>: use_csv
# Executable test_write
<tests/test_write.{native,byte}>: package(bytes)
<tests/test_write.{native,byte}>: use_csv
# Executable test_fix
<tests/test_fix.{native,byte}>: package(bytes)
<tests/test_fix.{native,byte}>: use_csv
# Executable test_lwt
<tests/test_lwt.{native,byte}>: package(bytes)
<tests/test_lwt.{native,byte}>: package(lwt)
<tests/test_lwt.{native,byte}>: package(lwt.unix)
<tests/test_lwt.{native,byte}>: use_csv
<tests/test_lwt.{native,byte}>: use_csv_lwt
<tests/*.ml{,i,y}>: package(bytes)
<tests/*.ml{,i,y}>: package(lwt)
<tests/*.ml{,i,y}>: package(lwt.unix)
<tests/*.ml{,i,y}>: use_csv
<tests/*.ml{,i,y}>: use_csv_lwt
# OASIS_STOP

true: annot, safe_string
Expand Down

0 comments on commit 935ae7e

Please sign in to comment.