fixed artifact dep

This commit is contained in:
Parker TenBroeck 2026-03-11 13:40:36 -04:00
parent d979e99ce5
commit 53eb596861
7 changed files with 18 additions and 57 deletions

View file

@ -5,8 +5,7 @@ use tokio::process::{Child, Command};
use crate::HResult;
const EMBEDDED_VHDL_UI_LIB: &[u8] =
include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/../target/release/libvhdl_conn.a"));
const EMBEDDED_VHDL_UI_LIB: &[u8] = include_bytes!(env!("EMBEDDED_VHDL_CONN_LIB_PATH"));
async fn ensure_ok(child: Child) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
let result = child.wait_with_output().await?;