- Mixin hack to get unit tests and client-side library usage working - but not OUR builds
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-19 13:14:46 +02:00
parent e8ae7e67b3
commit caa8ee9376
1 changed files with 11 additions and 2 deletions

View File

@ -4,5 +4,14 @@ public import libsnooze.event : Event;
public import libsnooze.exceptions;
// TODO: See if this fixes when importing
public import clib;
// public import libsnooze
// public import clib;
// public import libsnooze
mixin template ImportFix()
{
import libsnooze.clib;
import libsnooze;
}
// Cuases build issues but atleast unit tests work
mixin ImportFix!();