mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:55:35 +00:00
6590388024
* generator/Makefile.am : remove source file. * generator/Signal.cs : generate marshaling callbacks and use new GLib.Signal marshaling class for events. * generator/SignalHandler.cs : kill. byebye SignalCallback subclasses. * glib/Makefile.am : update source files. * glib/GLibSharp.voidObjectIntPtrSignal.cs : kill. * glib/Object.cs : mark the old Before/After props Obsolete. Use GLib.Signal for the notify prop methods. * glib/Signal.cs : new signal marshaling class. It manages all the ConnectBefore/After stuff internally and connects itself to the native object using GCHandles and DestroyNotify lifecycle management. * glib/SignalCallback.cs : mark Obsolete. [Fixes #72018 and #69847] svn path=/trunk/gtk-sharp/; revision=40007
63 lines
1.2 KiB
Makefile
63 lines
1.2 KiB
Makefile
assemblydir = $(libdir)/gtk-sharp-2.0
|
|
assembly_DATA = gapi_codegen.exe
|
|
bin_SCRIPTS = gapi2-codegen
|
|
CLEANFILES = gapi_codegen.exe
|
|
DISTCLEANFILES = gapi2-codegen
|
|
|
|
references =
|
|
|
|
sources = \
|
|
AliasGen.cs \
|
|
BoxedGen.cs \
|
|
ByRefGen.cs \
|
|
CallbackGen.cs \
|
|
ChildProperty.cs \
|
|
ClassBase.cs \
|
|
ClassGen.cs \
|
|
CodeGenerator.cs \
|
|
ConstStringGen.cs \
|
|
Ctor.cs \
|
|
EnumGen.cs \
|
|
Field.cs \
|
|
GenBase.cs \
|
|
GenerationInfo.cs \
|
|
IGeneratable.cs \
|
|
ImportSignature.cs \
|
|
InterfaceGen.cs \
|
|
LPGen.cs \
|
|
LPUGen.cs \
|
|
ManagedCallString.cs \
|
|
ManualGen.cs \
|
|
MarshalGen.cs \
|
|
MethodBase.cs \
|
|
MethodBody.cs \
|
|
Method.cs \
|
|
ObjectGen.cs \
|
|
OpaqueGen.cs \
|
|
Parameters.cs \
|
|
Parser.cs \
|
|
Property.cs \
|
|
ReturnValue.cs \
|
|
Signal.cs \
|
|
Signature.cs \
|
|
SimpleBase.cs \
|
|
SimpleGen.cs \
|
|
Statistics.cs \
|
|
StringGen.cs \
|
|
StructBase.cs \
|
|
StructGen.cs \
|
|
SymbolTable.cs \
|
|
VirtualMethod.cs \
|
|
VMSignature.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
dist_sources = $(sources)
|
|
|
|
EXTRA_DIST = \
|
|
makefile.win32 \
|
|
$(dist_sources)
|
|
|
|
gapi_codegen.exe: $(build_sources)
|
|
$(CSC) /out:gapi_codegen.exe $(references) $(build_sources)
|
|
|