mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-24 11:11:02 -07:00
12 lines
192 B
Python
12 lines
192 B
Python
import platform
|
|
|
|
_is_windows = (platform.system() == "Windows")
|
|
|
|
class Toolchain:
|
|
PREFIX = ""
|
|
EXE = ".exe" if _is_windows else ""
|
|
|
|
|
|
class HostToolchain(Toolchain):
|
|
PREFIX = "HOST"
|