Add CMakelist integration

This commit is contained in:
2023-11-12 22:14:29 +01:00
parent f6e00530be
commit 6a23e2cc26
6 changed files with 16 additions and 9 deletions

View File

@@ -18,4 +18,6 @@ static platform::Registrar registrarALD("AODELd",
[](void) -> bayesnet::BaseClassifier* { return new bayesnet::AODELd();});
static platform::Registrar registrarBA("BoostAODE",
[](void) -> bayesnet::BaseClassifier* { return new bayesnet::BoostAODE();});
static pywrap::Registrar registrarSt("STree",
[](void) -> bayesnet::BaseClassifier* { return new pywrap::STree();});
#endif