Update and add missing Atmel Studio project description XML files.

This commit is contained in:
Dean Camera 2013-01-10 21:09:53 +00:00
parent bdd74a5ed9
commit 5cdc29616c
41 changed files with 1084 additions and 17 deletions

View file

@ -16,7 +16,7 @@ def main():
from asf_avrstudio5_interface import PythonFacade
except ImportError:
print "Fatal Error: The ASF project generator is missing."
sys.exit()
return 1
p = PythonFacade(os.path.abspath(__file__))
@ -29,6 +29,7 @@ def main():
p.generate_extension_cache_files(sys.argv[1])
print "[Project Generator] Cache files created."
return 0
if __name__ == "__main__":