2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00
raylib-cs/Raylib-cs/Generator.cs
ChrisDill e0d590b855 Testing the idea of generating the bindings
- Added cppsharp to see if it will work with raylib.
2018-07-23 20:27:07 +01:00

46 lines
1.3 KiB
C#

using CppSharp;
using CppSharp.AST;
using CppSharp.Generators;
namespace Raylibcs
{
/// <summary>
/// Generates the bindings for raylib
/// ConsoleDriver.Run(new SampleLibrary());
/// </summary>
public class SampleLibrary : ILibrary
{
public void Preprocess(Driver driver, ASTContext ctx)
{
// ctx.SetNameOfEnumWithMatchingItem("KEY_", "Keys");
// throw new NotImplementedException();
}
public void Postprocess(Driver driver, ASTContext ctx)
{
//throw new NotImplementedException();
}
void ILibrary.Setup(Driver driver)
{
var options = driver.Options;
options.GeneratorKind = GeneratorKind.CSharp;
options.Verbose = true;
var module = options.AddModule("raylib");
module.IncludeDirs.Add("C:\\raylib\\raylib\\src");
module.Headers.Add("raylib.h");
module.Headers.Add("raymath.h");
module.LibraryDirs.Add("C:\\raylib\\raylib\\release\\libs\\win32\\msvc");
module.Libraries.Add("raylib.lib");
module.Defines.Add("KEY_SPACE");
}
void ILibrary.SetupPasses(Driver driver)
{
// throw new NotImplementedException();
}
}
}