mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 08:15:28 +00:00
a7a0bf8042
* sample/rsvg/Makefile.am: do not reference gnome-sharp and art-sharp * sample/rsvg/svghelloworld.cs: rework with just gtk (no gnome deps) svn path=/trunk/gtk-sharp/; revision=29923
17 lines
508 B
Makefile
17 lines
508 B
Makefile
assemblies = ../../glib/glib-sharp.dll ../../pango/pango-sharp.dll ../../atk/atk-sharp.dll ../../gdk/gdk-sharp.dll ../../gtk/gtk-sharp.dll ../../rsvg/rsvg-sharp.dll
|
|
references = $(addprefix /r:, $(assemblies))
|
|
|
|
if ENABLE_RSVG
|
|
TARGETS = svghelloworld.exe
|
|
else
|
|
TARGETS =
|
|
endif
|
|
CLEANFILES = $(TARGETS)
|
|
noinst_SCRIPTS = $(TARGETS)
|
|
EXTRA_DIST = svghelloworld.cs sample.svg
|
|
|
|
SOURCES = $(srcdir)/svghelloworld.cs
|
|
svghelloworld.exe: $(SOURCES) $(assemblies)
|
|
$(CSC) /out:svghelloworld.exe $(SOURCES) $(references)
|
|
|