You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
338 B
10 lines
338 B
#!/bin/sh |
|
|
|
export OUTPUT="$2" |
|
export CARGO_TARGET_DIR="$3"/target |
|
export CARGO_HOME="$CARGO_TARGET_DIR"/cargo-home |
|
export FRACTAL_PROFILE="$4" |
|
|
|
echo "GENERATING DOCUMENTATION" |
|
cargo doc --manifest-path $1/Cargo.toml -p fractal-matrix-api --no-deps && |
|
cargo rustdoc --manifest-path $1/Cargo.toml -p fractal-gtk -- --document-private-items
|
|
|