Build x86 and x64 variants of windows dlls.

This commit is contained in:
Adam Murdoch
2012-09-16 09:33:47 +10:00
parent b44e037b05
commit d5404493cf
2 changed files with 29 additions and 5 deletions

View File

@@ -49,6 +49,9 @@ public abstract class Platform {
if (getArchitecture().equals("x86")) {
return "native-platform-windows-i386.dll";
}
if (getArchitecture().equals("amd64")) {
return "native-platform-windows-amd64.dll";
}
throw new NativeIntegrationUnavailableException(String.format(
"Native integration is not available for this architecture (%s) on Windows.", getArchitecture()));
}