Merge pull request #589 from matthiasbeyer/imag-documentation
Imag (library) documentation
This commit is contained in:
commit
49cd0d0476
3 changed files with 75 additions and 0 deletions
64
.imag-documentation/Cargo.toml
Normal file
64
.imag-documentation/Cargo.toml
Normal file
|
@ -0,0 +1,64 @@
|
|||
[package]
|
||||
name = "imag-documentation"
|
||||
version = "0.2.0"
|
||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||
|
||||
[dependencies]
|
||||
|
||||
[dependencies.libimagbookmark]
|
||||
path = "../libimagbookmark"
|
||||
|
||||
[dependencies.libimagcounter]
|
||||
path = "../libimagcounter"
|
||||
|
||||
[dependencies.libimagdiary]
|
||||
path = "../libimagdiary"
|
||||
|
||||
[dependencies.libimagentryfilter]
|
||||
path = "../libimagentryfilter"
|
||||
|
||||
[dependencies.libimagentrylink]
|
||||
path = "../libimagentrylink"
|
||||
|
||||
[dependencies.libimagentrylist]
|
||||
path = "../libimagentrylist"
|
||||
|
||||
[dependencies.libimagentrymarkdown]
|
||||
path = "../libimagentrymarkdown"
|
||||
|
||||
[dependencies.libimagentryselect]
|
||||
path = "../libimagentryselect"
|
||||
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
[dependencies.libimagentryview]
|
||||
path = "../libimagentryview"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimaginteraction]
|
||||
path = "../libimaginteraction"
|
||||
|
||||
[dependencies.libimagnotes]
|
||||
path = "../libimagnotes"
|
||||
|
||||
[dependencies.libimagref]
|
||||
path = "../libimagref"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagstorestdhook]
|
||||
path = "../libimagstorestdhook"
|
||||
|
||||
[dependencies.libimagtimeui]
|
||||
path = "../libimagtimeui"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
6
.imag-documentation/src/lib.rs
Normal file
6
.imag-documentation/src/lib.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
}
|
||||
}
|
5
Makefile
5
Makefile
|
@ -1,6 +1,8 @@
|
|||
toml = $@/Cargo.toml
|
||||
bin = $@/target/debug/$@
|
||||
|
||||
doc-crate-toml=./.imag-documentation/Cargo.toml
|
||||
|
||||
default: all
|
||||
|
||||
.PHONY: clean
|
||||
|
@ -11,6 +13,9 @@ imag-%: prep
|
|||
cargo build --manifest-path $(toml)
|
||||
cp $(bin) out/
|
||||
|
||||
lib-doc:
|
||||
cargo build --manifest-path $(doc-crate-toml)
|
||||
|
||||
prep:
|
||||
mkdir -p out/
|
||||
|
||||
|
|
Loading…
Reference in a new issue