1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
use crate::buildsystem::BuildSystem;


/// This is a dummy struct, it just uses an empty impl for BuildSystem.
pub struct DefaultBuildSystem;
impl DefaultBuildSystem {
    pub fn new() -> Self { Self {} }
}

impl BuildSystem for DefaultBuildSystem {
}