b49106dc1d
feat: Refactor Iced panel adapter and introduce build metadata management - Updated Cargo.toml files across multiple crates to use workspace versioning. - Enhanced the `iced-panel-adapter` to include a new `plain_slider` module and updated widget rendering to support theme colors. - Added new theme color utilities for recessed and elevated surfaces in `iced-panel-adapter`. - Introduced a new `hcie-build-info` crate to manage build metadata, including a build ID system. - Created a build script to synchronize build IDs across the workspace. - Added a Makefile for simplified build commands for the Iced application. - Implemented regression tests for vector shape creation history in the engine API. - Added a new script for managing Cargo commands with synchronized build ID increments. - Updated line count report to reflect recent changes in codebase. - Created a visual plan document for future improvements in the Iced history and panel systems.
44 lines
1.6 KiB
Makefile
44 lines
1.6 KiB
Makefile
# HCIE-Rust v3 — Egui Build Commands
|
|
# ===================================
|
|
#
|
|
# Usage:
|
|
# make dev egui dev (native OpenGL window)
|
|
# make build egui release binary
|
|
# make check cargo check
|
|
# make test run tests
|
|
# make lint cargo clippy
|
|
|
|
.PHONY: dev build check test lint help
|
|
|
|
# ── Development ────────────────────────────────────────────────────────────
|
|
|
|
dev:
|
|
@echo "▶ HCIE Egui — Dev Mode"
|
|
../scripts/cargo-with-build-id.sh run -p hcie-gui-egui
|
|
|
|
# ── Production Builds ──────────────────────────────────────────────────────
|
|
|
|
build:
|
|
@echo "▶ HCIE Egui — Release Build"
|
|
../scripts/cargo-with-build-id.sh build --release -p hcie-gui-egui
|
|
@echo "→ Binary: target/release/hcie-gui"
|
|
|
|
# ── Validation ─────────────────────────────────────────────────────────────
|
|
|
|
check:
|
|
../scripts/cargo-with-build-id.sh check --workspace
|
|
|
|
test:
|
|
../scripts/cargo-with-build-id.sh test --workspace
|
|
|
|
lint:
|
|
../scripts/cargo-with-build-id.sh clippy --workspace -- --deny warnings
|
|
|
|
help:
|
|
@echo "HCIE-Rust v3 — Egui Commands:"
|
|
@echo " make dev — Egui dev (native OpenGL)"
|
|
@echo " make build — Egui release binary"
|
|
@echo " make check — cargo check"
|
|
@echo " make test — run tests"
|
|
@echo " make lint — cargo clippy"
|