mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-06 22:23:42 +01:00
85 lines
1.4 KiB
Org Mode
85 lines
1.4 KiB
Org Mode
#+TITLE: Linear Algebra
|
|
#+SETUPFILE: https://fniessen.github.io/org-html-themes/org/theme-readtheorg.setup
|
|
|
|
#+name: synopsis
|
|
#+begin_src ocaml :export output raw
|
|
"Linear algebra utilities of QCaml libraries."
|
|
#+end_src
|
|
|
|
#+RESULTS: synopsis
|
|
: Linear algebra utilities of QCaml libraries.
|
|
|
|
|
|
* Dune files :noexport:
|
|
|
|
** Generate dune files
|
|
|
|
Use [C-c C-c] on the code below to create the output for the dune files
|
|
|
|
#+header: :noweb strip-export
|
|
#+header: :var name=(file-name-directory buffer-file-name)
|
|
#+header: :var dune="lib/dune"
|
|
#+header: :var dunetest="test/dune"
|
|
#+begin_src python :exports none :results output none
|
|
name = name.split('/')[-2]
|
|
synopsis = """
|
|
<<synopsis>>
|
|
"""
|
|
|
|
with open(dune,'w') as f:
|
|
f.write(f"""
|
|
(library
|
|
(name {name})
|
|
(public_name qcaml.{name})
|
|
(synopsis {synopsis} )
|
|
<<dependencies>>
|
|
<<noimplementation>>
|
|
<<c-files>>
|
|
)
|
|
<<lex-yacc>>
|
|
""")
|
|
|
|
with open(dunetest,'w') as f:
|
|
f.write(f"""
|
|
(library
|
|
(name test_{name})
|
|
(synopsis "Test for {name} library")
|
|
(libraries
|
|
alcotest
|
|
qcaml.{name}
|
|
)
|
|
)
|
|
""")
|
|
#+end_src
|
|
|
|
** Dependencies
|
|
|
|
#+name: dependencies
|
|
#+begin_src elisp
|
|
(libraries
|
|
qcaml.common
|
|
lacaml
|
|
)
|
|
#+end_src
|
|
|
|
** Modules without implementation
|
|
|
|
#+name: noimplementation
|
|
#+begin_src elisp
|
|
#+end_src
|
|
|
|
** Extra C files
|
|
|
|
#+begin_src elisp
|
|
#+end_src
|
|
|
|
** Parser files
|
|
|
|
#+name: lex-yacc
|
|
#+begin_src elisp
|
|
#+end_src
|
|
|
|
|
|
|
|
|