mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
12 lines
302 B
Rust
12 lines
302 B
Rust
extern crate napi_build;
|
|
|
|
#[cfg(all(not(feature = "swc_v1"), not(feature = "swc_v2")))]
|
|
compile_error!("Please enable swc_v1 or swc_v2 feature");
|
|
|
|
#[cfg(all(feature = "swc_v1", feature = "swc_v2"))]
|
|
compile_error!("Features swc_v1 and swc_v2 are incompatible");
|
|
|
|
fn main() {
|
|
napi_build::setup();
|
|
}
|