Make setup.py compatible with new include CBA structure

This commit is contained in:
jonpas 2018-05-22 19:49:19 +02:00
parent ef2c8c9502
commit f613597636

View File

@ -96,10 +96,10 @@ def main():
return -1
try:
shutil.copytree(os.path.join(projectpath, "tools", "cba"), CBA)
shutil.copytree(os.path.join(projectpath, "include", "x", "cba"), CBA)
except:
raise
print("Something went wrong while copying CBA includes. Please copy tools\\cba to {} manually.".format(CBA))
print("Something went wrong while copying CBA includes. Please copy include\\x\\cba to {} manually.".format(CBA))
return 7
print("# CBA includes copied successfully to {}.".format(CBA))