kivy-ios/recipes/hostpython.py
2018-11-02 11:44:25 +01:00

15 lines
467 B
Python

# -*- coding: utf-8 -*-
from toolchain import Recipe
class HostpythonAliasRecipe(Recipe):
is_alias = True
def init_after_import(self, ctx):
hostpython = ctx.state.get("hostpython")
if not hostpython:
print("WARNING: no hostpython set yet, so you need to specify")
print("WARNING: either hostpython2 or hostpython3 in your deps")
else:
self.depends = [hostpython]
recipe = HostpythonAliasRecipe()