| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | def can_build(env, platform): | 
					
						
							| 
									
										
										
										
											2020-06-06 20:29:52 +02:00
										 |  |  |     # Thirdparty dependency OpenImage Denoise includes oneDNN library | 
					
						
							| 
									
										
										
										
											2021-08-28 17:40:32 -05:00
										 |  |  |     # and the version we use only supports x86_64. | 
					
						
							| 
									
										
										
										
											2020-06-06 20:29:52 +02:00
										 |  |  |     # It's also only relevant for tools build and desktop platforms, | 
					
						
							| 
									
										
										
										
											2022-08-28 20:27:45 +02:00
										 |  |  |     # as doing lightmap generation and denoising on Android or Web | 
					
						
							| 
									
										
										
										
											2020-06-06 20:29:52 +02:00
										 |  |  |     # would be a bit far-fetched. | 
					
						
							| 
									
										
										
										
											2022-07-20 09:28:22 +03:00
										 |  |  |     desktop_platforms = ["linuxbsd", "macos", "windows"] | 
					
						
							| 
									
										
										
										
											2021-12-15 17:38:10 -08:00
										 |  |  |     return env["tools"] and platform in desktop_platforms and env["arch"] == "x86_64" | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def configure(env): | 
					
						
							|  |  |  |     pass |