crosvm/crosvm_control/Cargo.toml
Christian Blichmann 9dc9210d3d crosvm_control: Also create a static lib
This is useful for projects that build in lock-step with crosvm and want
to control a VM without having to `dlopen()` or embed
`libcrosvm_control.so`.

TEST=./tools/presubmit --quick
BUG=none

Change-Id: I9407c3e1783f55e399358bdf291a999ee8dc8892
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3864925
Reviewed-by: Dennis Kempin <denniskempin@google.com>
Commit-Queue: Christian Blichmann <cblichmann@google.com>
Tested-by: Christian Blichmann <cblichmann@google.com>
2022-09-01 07:33:29 +00:00

17 lines
306 B
TOML

[package]
name = "crosvm_control"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2021"
[lib]
crate-type = ["cdylib", "staticlib"]
[dependencies]
base = { path = "../base" }
vm_control = { path = "../vm_control" }
libc = "0.2.65"
[build-dependencies]
anyhow = "*"
cbindgen = "0.20.0"