microsoft/openvmm

Public

mirrored fromhttps://github.com/microsoft/openvmmAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1066b8e98caa25e04837fded0061fe6beeb953e7

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

openhcl/azure_profiler_proto/build.rs

11lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4fn main() {
5 prost_build::Config::new()
6 .type_attribute(".", "#[derive(mesh::MeshPayload)]")
7 .type_attribute(".", "#[mesh(prost)]")
8 .service_generator(Box::new(mesh_build::MeshServiceGenerator))
9 .compile_protos(&["src/profile.proto"], &["src/"])
10 .unwrap();
11}
12