Files
hcie-rust-v3.05/hcie-iced-app/Makefile
T
phantom b49106dc1d BIG REFACTOR GPT SOL
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.
2026-07-21 04:25:23 +03:00

22 lines
598 B
Makefile

# HCIE Iced build commands. All targets increment the shared build ID exactly once.
.PHONY: dev build check test help
dev:
../scripts/cargo-with-build-id.sh run -p hcie-iced-gui
build:
../scripts/cargo-with-build-id.sh build --release -p hcie-iced-gui
check:
../scripts/cargo-with-build-id.sh check -p hcie-iced-gui
test:
../scripts/cargo-with-build-id.sh test -p hcie-iced-gui --tests
help:
@echo " make dev — run Iced with synchronized build version"
@echo " make build — build release Iced binary"
@echo " make check — check Iced"
@echo " make test — test Iced"