Category:OCaml Calendar Library: Difference between revisions

how to use
(basic page)
 
(how to use)
Line 4:
 
Project page: http://forge.ocamlcore.org/projects/calendar/
 
=== How to use ===
 
When this library is installed, one can run a script in interpreted mode with this command line:
 
ocaml unix.cma str.cma -I +calendar calendarLib.cma script.ml
 
And to compile to native code:
 
ocamlopt unix.cmxa str.cmxa -I +calendar calendarLib.cmxa prog.ml -o prog
 
Or using findlib:
 
ocamlfind opt -package calendar -linkpkg prog.ml -o prog
 
To use it without installing it, one can open the source archive in <code>/tmp</code> for example, and then after compiling, just replace <code>+calendar</code> by <code>/tmp/calendar-2.03.1/target/</code> in the previous commands.