forked from Joystream/joystream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.rs
44 lines (37 loc) · 1.59 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2019 Parity Technologies (UK) Ltd.
// This file is part of Substrate.
// Substrate is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Substrate is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
use std::{env, process::Command, string::String};
use substrate_wasm_builder::WasmBuilder;
fn main() {
if !in_real_cargo_environment() {
env::set_var("BUILD_DUMMY_WASM_BINARY", "1");
println!("Building DUMMY Wasm binary");
}
WasmBuilder::new()
.with_current_project()
.export_heap_base()
.import_memory()
.build()
}
fn in_real_cargo_environment() -> bool {
let cargo =
env::var("CARGO").expect("`CARGO` env variable is always set when executing `build.rs`.");
let mut cmd = Command::new(cargo);
cmd.arg("--version");
let output = cmd.output().expect("failed to get cargo version");
let version = String::from_utf8(output.stdout).unwrap();
println!("{}", version);
// if we are building in an IDE (Code or Atom) with RLS extension the version
// would start with "rls"
version.starts_with("cargo")
}