2022-04-07 15:34:34 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-05-09 11:28:24 +00:00
|
|
|
set -eu
|
|
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
|
|
cd "$script_path/.."
|
|
|
|
|
2022-08-20 13:06:43 +00:00
|
|
|
cargo doc -p eframe --target wasm32-unknown-unknown --lib --no-deps
|
2023-02-04 10:21:02 +00:00
|
|
|
cargo doc -p emath -p epaint -p egui -p eframe -p egui-winit -p egui_extras -p egui_glow --lib --no-deps --all-features --open
|
2021-05-09 11:28:24 +00:00
|
|
|
|
|
|
|
# cargo watch -c -x 'doc -p emath -p epaint -p egui --lib --no-deps --all-features'
|