-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtools.rs
27 lines (17 loc) · 898 Bytes
/
tools.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
pub mod exports {
pub use super::super::tools_common::exports::*;
#[ cfg ( feature = "vonuvoli_tools_interpreter" ) ]
pub use super::super::tools_interpreter::main as interpreter_main;
#[ cfg ( feature = "vonuvoli_tools_interpreter" ) ]
pub use super::super::tools_interpreter::premain as interpreter_premain;
#[ cfg ( feature = "vonuvoli_tools_compiler" ) ]
pub use super::super::tools_compiler::main as compiler_main;
#[ cfg ( feature = "vonuvoli_tools_tester" ) ]
pub use super::super::tools_tester::main as tester_main;
#[ cfg ( feature = "vonuvoli_tools_bencher" ) ]
pub use super::super::tools_bencher::main as bencher_main;
#[ cfg ( feature = "vonuvoli_tools_reports" ) ]
pub use super::super::tools_reports::main as reports_main;
#[ cfg ( feature = "vonuvoli_tools_documentation" ) ]
pub use super::super::tools_documentation::main as documentation_main;
}