mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-24 11:11:02 -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
|