algosul_core/
lib.rs

1#[cfg(feature = "codegen")]
2pub mod codegen;
3#[macro_export]
4macro_rules! mod_all_os {
5    {$vis:vis} => {
6        #[cfg(unix)]
7        $vis mod unix;
8        #[cfg(target_os = "linux")]
9        $vis mod linux;
10        #[cfg(target_os = "macos")]
11        $vis mod macos;
12        #[cfg(windows)]
13        $vis mod windows;
14        #[cfg(target_os = "ios")]
15        $vis mod ios;
16        #[cfg(target_os = "android")]
17        $vis mod android;
18    };
19}