Try Windows 2022, since the windows tests failed. Likely because I compiled them on a newer version of VS. Also added another when statement to make sure Linux still uses botan-2, because they haven't updated

This commit is contained in:
zhibog
2023-05-03 21:12:27 +02:00
parent 077a611a5e
commit 77d6364405
2 changed files with 16 additions and 14 deletions
+4 -2
View File
@@ -142,9 +142,11 @@ fpe_t :: ^fpe_struct
when ODIN_OS == .Windows {
foreign import botan_lib "botan.lib"
} else {
} else ODIN_OS == .Darwin {
foreign import botan_lib "system:botan-3"
}
} else {
foreign import botan_lib "system:botan-2"
}
@(default_calling_convention="c")
@(link_prefix="botan_")