add missing default methods in target.py

This commit is contained in:
Mathieu Virbel 2012-12-24 00:27:59 +01:00
parent 47fbfbe209
commit b732490b2c

View file

@ -24,6 +24,9 @@ class Target(object):
def compile_platform(self):
pass
def install_platform(self):
pass
def get_custom_commands(self):
result = []
for x in dir(self):