codemp 0.7.0-beta.1

codemp -- code multiplexer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "js")]
extern crate napi_build;

#[cfg(feature = "python")]
extern crate pyo3_build_config;

/// The main method of the buildscript, required by some glue modules.
fn main() {
	#[cfg(feature = "js")]
	{
		napi_build::setup();
	}

	#[cfg(feature = "python")]
	{
		pyo3_build_config::add_extension_module_link_args();
	}
}