Files
pezkuwi-subxt/testing/integration-tests/build.rs
T
2024-02-29 15:24:20 +02:00

10 lines
330 B
Rust

use cfg_aliases::cfg_aliases;
fn main() {
// Setup cfg aliases
cfg_aliases! {
lightclient: { any(feature = "unstable-light-client", feature = "unstable-light-client-long-running") },
fullclient: { all(not(feature = "unstable-light-client"), not(feature = "unstable-light-client-long-running")) },
}
}