Explorar el Código

wgpu: add missing libs on Windows

Laytan Laats hace 6 meses
padre
commit
30f65372de
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      vendor/wgpu/wgpu.odin

+ 2 - 0
vendor/wgpu/wgpu.odin

@@ -30,6 +30,8 @@ when ODIN_OS == .Windows {
 		"system:gdi32.lib",
 		"system:gdi32.lib",
 		"system:ole32.lib",
 		"system:ole32.lib",
 		"system:oleaut32.lib",
 		"system:oleaut32.lib",
+		"system:propsys.lib",
+		"system:runtimeobject.lib",
 	}
 	}
 } else when ODIN_OS == .Darwin {
 } else when ODIN_OS == .Darwin {
 	@(private) ARCH :: "x86_64" when ODIN_ARCH == .amd64 else "aarch64" when ODIN_ARCH == .arm64 else #panic("unsupported WGPU Native architecture")
 	@(private) ARCH :: "x86_64" when ODIN_ARCH == .amd64 else "aarch64" when ODIN_ARCH == .arm64 else #panic("unsupported WGPU Native architecture")