2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-03 01:31:54 +00:00

Add code generation on compiling to premake scripts using custom build commands

This commit is contained in:
Jan
2019-10-25 02:13:37 +02:00
parent d93b4f5fac
commit 034de70bbc
27 changed files with 345 additions and 325 deletions

View File

@ -56,8 +56,10 @@ namespace ZoneCodeGenerator.Parsing.C_Header
return dataRepository;
}
}
catch (IOException)
catch (IOException e)
{
Console.WriteLine("An exception occured while trying to read header file");
Console.WriteLine(e.Message);
return null;
}
}