mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-31 11:17:01 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			201 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			201 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import platform
 | |
| import os
 | |
| 
 | |
| if os.getenv("BUILDTYPE") == "windows":
 | |
|     windows = True
 | |
|     osx = False
 | |
|     unix = False
 | |
| else:
 | |
|     windows = False
 | |
|     osx = platform.system() == "Darwin"
 | |
|     unix = True
 |