aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_core/src/build.rs')
-rw-r--r--mingling_core/src/build.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mingling_core/src/build.rs b/mingling_core/src/build.rs
new file mode 100644
index 0000000..7918f3a
--- /dev/null
+++ b/mingling_core/src/build.rs
@@ -0,0 +1,13 @@
+#[doc(hidden)]
+#[cfg(feature = "comp")]
+mod comp;
+
+#[cfg(feature = "comp")]
+pub use comp::*;
+
+#[doc(hidden)]
+#[cfg(feature = "pathf")]
+mod pathf;
+
+#[cfg(feature = "pathf")]
+pub use pathf::*;