mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:45:32 +00:00
144a0f9d20
* generator/CallbackGen.cs : implement new IAccessor iface so that callback fields on structs can now be accessed. * generator/ClassBase.cs : remove/abstract some methods incorrectly located here. * generator/ClassGen.cs : implement methods previously inherited from ClassBase incorrectly. * generator/HandleBase.cs : new base class for native ptr wrappers. Implements new IAccessor interface and code moved from ClassBase. * generator/IAccessor.cs : new iface to generate field/prop accessors. * generator/InterfaceGen.cs : derive from new ObjectBase. * generator/LPGen.cs : implement IAccessor. * generator/LPUGen.cs : implement IAccessor. * generator/ObjectBase.cs : new base class for Object/Iface types. * generator/ObjectGen.cs : derive from new ObjectBase. * generator/OpaqueGen.cs : derive from HandleBase. * generator/StructField.cs : refactor Generate method using new IAccessor interface. * */*.custom : add obsolete impls for some existing c_cased struct field accessors that are now StudlyNamed. svn path=/trunk/gtk-sharp/; revision=46878
26 lines
561 B
Makefile
26 lines
561 B
Makefile
if ENABLE_RSVG
|
|
pkg = rsvg
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = rsvg-sharp-2.0.pc
|
|
else
|
|
pkg =
|
|
endif
|
|
|
|
INCLUDE_API = ../pango/pango-api.xml ../atk/atk-api.xml ../gdk/gdk-api.xml ../gtk/gtk-api.xml ../art/art-api.xml
|
|
METADATA = Rsvg.metadata
|
|
SYMBOLS =
|
|
references = ../glib/glib-sharp.dll ../pango/pango-sharp.dll ../atk/atk-sharp.dll ../gdk/gdk-sharp.dll ../gtk/gtk-sharp.dll ../art/art-sharp.dll
|
|
|
|
sources = \
|
|
Tool.cs
|
|
|
|
customs = \
|
|
Handle.custom \
|
|
Pixbuf.custom \
|
|
State.custom
|
|
|
|
add_dist = rsvg-sharp-2.0.pc.in
|
|
|
|
include ../Makefile.include
|
|
|