mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-26 00:51:14 +00:00
adding sample/gtk-gio/ into the build
svn path=/trunk/gtk-sharp/; revision=126582
This commit is contained in:
parent
d7dfd57c20
commit
9174bf3577
|
@ -270,6 +270,7 @@ sample/valtest/valtest.exe.config
|
||||||
sample/opaquetest/Makefile
|
sample/opaquetest/Makefile
|
||||||
sample/opaquetest/opaquetest.exe.config
|
sample/opaquetest/opaquetest.exe.config
|
||||||
sample/gio/Makefile
|
sample/gio/Makefile
|
||||||
|
sample/gtk-gio/Makefile
|
||||||
])
|
])
|
||||||
|
|
||||||
if test "x$enable_mono_cairo" = "xyes"; then
|
if test "x$enable_mono_cairo" = "xyes"; then
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
<metadata>
|
<metadata>
|
||||||
<add-node path="/api"><symbol type="simple" cname="GSeekType" name="GLib.SeekType"/></add-node>
|
<add-node path="/api"><symbol type="simple" cname="GSeekType" name="GLib.SeekType"/></add-node>
|
||||||
<attr path="/api/namespace" name="name">GLib</attr>
|
<attr path="/api/namespace" name="name">GLib</attr>
|
||||||
|
<attr path="/api/namespace/interface[@cname='GAppInfo']" name="consume_only">1</attr>
|
||||||
|
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='CanRemoveSupportsType']" name="name">GetCanRemoveSupportsType</attr>
|
||||||
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='GetAll']" name="hidden">1</attr>
|
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='GetAll']" name="hidden">1</attr>
|
||||||
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='GetAllForType']/return-type" name="element_type">GAppInfo*</attr>
|
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='GetAllForType']/return-type" name="element_type">GAppInfo*</attr>
|
||||||
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='GetAllForType']/return-type" name="owned">true</attr>
|
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='GetAllForType']/return-type" name="owned">true</attr>
|
||||||
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='ShouldShow']" name="name">GetShouldShow</attr>
|
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='ShouldShow']" name="name">GetShouldShow</attr>
|
||||||
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='SupportsFiles']" name="name">GetSupportsFiles</attr>
|
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='SupportsFiles']" name="name">GetSupportsFiles</attr>
|
||||||
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='SupportsUris']" name="name">GetSupportsUris</attr>
|
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='SupportsUris']" name="name">GetSupportsUris</attr>
|
||||||
<attr path="/api/namespace/interface[@cname='GAppInfo']/method[@name='CanRemoveSupportsType']" name="name">GetCanRemoveSupportsType</attr>
|
|
||||||
<attr path="/api/namespace/interface[@cname='GAppInfo']" name="consume_only">1</attr>
|
|
||||||
<attr path="/api/namespace/interface[@cname='GFile']/method[@name='GetParseName']" name="name">GetParsedName</attr>
|
<attr path="/api/namespace/interface[@cname='GFile']/method[@name='GetParseName']" name="name">GetParsedName</attr>
|
||||||
<attr path="/api/namespace/interface[@cname='GFile']/method[@name='GetUri']" name="hidden">1</attr>
|
<attr path="/api/namespace/interface[@cname='GFile']/method[@name='GetUri']" name="hidden">1</attr>
|
||||||
<attr path="/api/namespace/interface[@cname='GLoadableIcon']/method[@name='LoadAsync']/*/*[@type='GAsyncReadyCallback']" name="scope">async</attr>
|
<attr path="/api/namespace/interface[@cname='GLoadableIcon']/method[@name='LoadAsync']/*/*[@type='GAsyncReadyCallback']" name="scope">async</attr>
|
||||||
|
|
20
sample/gtk-gio/Makefile.am
Executable file
20
sample/gtk-gio/Makefile.am
Executable file
|
@ -0,0 +1,20 @@
|
||||||
|
TARGETS = MountOperation.exe
|
||||||
|
|
||||||
|
DEBUGS = $(addsuffix .mdb, $(TARGETS))
|
||||||
|
|
||||||
|
assemblies = \
|
||||||
|
$(top_builddir)/glib/glib-sharp.dll \
|
||||||
|
$(top_builddir)/gtk/gtk-sharp.dll \
|
||||||
|
$(top_builddir)/gio/gio-sharp.dll
|
||||||
|
|
||||||
|
references=$(addprefix /r:, $(assemblies))
|
||||||
|
|
||||||
|
noinst_SCRIPTS = $(TARGETS)
|
||||||
|
CLEANFILES = $(TARGETS) $(DEBUGS)
|
||||||
|
|
||||||
|
.cs.exe: $(assemblies)
|
||||||
|
$(CSC) /out:$@ $(references) $<
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
MountOperation.cs
|
||||||
|
|
Loading…
Reference in a new issue