mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-28 06:37:11 +01:00
15 lines
462 B
Python
15 lines
462 B
Python
|
|
||
|
def can_build(env, platform):
|
||
|
return env["tools"] and platform not in ["android", "ios"]
|
||
|
|
||
|
|
||
|
# Todo this thould be moved here
|
||
|
#opts.Add(BoolVariable("builtin_xatlas", "Use the built-in xatlas library", True))
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|
||
|
|
||
|
def get_license_file():
|
||
|
return "COPYRIGHT.txt"
|
||
|
|