targets/__init__.py
changeset 1881 091005ec69c4
parent 1847 6198190bc121
child 2490 2d72d8a8d7e5
equal deleted inserted replaced
1880:e5ddbaf756cb 1881:091005ec69c4
    32 - Target are python packages, containing at least one "XSD" file
    32 - Target are python packages, containing at least one "XSD" file
    33 - Target class may inherit from a toolchain_(toolchainname)
    33 - Target class may inherit from a toolchain_(toolchainname)
    34 - The target folder's name must match to name define in the XSD for TargetType
    34 - The target folder's name must match to name define in the XSD for TargetType
    35 """
    35 """
    36 
    36 
       
    37 
       
    38 from __future__ import absolute_import
    37 from os import listdir, path
    39 from os import listdir, path
    38 import util.paths as paths
    40 import util.paths as paths
    39 
    41 
    40 _base_path = paths.AbsDir(__file__)
    42 _base_path = paths.AbsDir(__file__)
    41 
    43