···11+// intentionally empty program that we use as atarget to convince meson to
22+// build all the streamplace dependencies
33+14int main(int argc, char *argv[])
25{
36 return 0;
44-}77+}
···11+//go:build !static
22+33+// This runs during dynamic builds in dev
44+55+package streamplacedeps
66+77+// #cgo pkg-config: streamplacedeps
88+import "C"
+8
pkg/streamplacedeps/streamplacedeps-static.go
···11+//go:build static
22+33+// This runs during static builds when we're making production executables
44+55+package streamplacedeps
66+77+// #cgo pkg-config: streamplacedeps-uninstalled
88+import "C"
-1
rust/iroh-streamplace/README.md
···11# iroh-streamplace
2233-43## Development
5465```sh