Re: Glib-Object-Introspection on Windows

2015-05-17 Thread Torsten Schoenfeld
On 17.05.2015 15:34, Daniel Kasak wrote: dlltool --def Introspection.def --output-exp dll.exp [ LD blib\arch\auto\Glib\Object\Introspection\Introspection.xs.dll ] GObjectIntrospection.o:GObjectIntrospection.c:(.text+0x4a80): undefined referenc e to `SvGVariant'

Re: Glib-Object-Introspection on Windows

2015-05-17 Thread Daniel Kasak
Thanks a LOT for the quick response Torsten. My Windows VM is sitting @ home, waiting for me to try out your patch. I tried connecting from work, but my connection isn't fast enough to make it feasible :/ Dan On Mon, May 18, 2015 at 3:56 AM, Torsten Schoenfeld kaffeeti...@gmx.de wrote: On

Re: Strategy for unit testing GTK+ applications in C

2015-05-17 Thread Daniel Espinosa
I think your idea of keep processes in a library and create unit tests to it and then link to your GUI app is the better approach. GDA[1] have a processes non-GUI library, a GUI library of widgets and a GUI app. You should check it. [1] git.gnome.org/browse/libgda El may 16, 2015 4:45 AM, John

Re: Strategy for unit testing GTK+ applications in C

2015-05-17 Thread Florian Pelz
On 05/16/2015 11:45 AM, John Tall wrote: This time however I'm building an application, so it will already have its own main routine. I can't link my unit tests to the application because that would give me two main routines, the main entry point of the application and the main entry point of

Glib-Object-Introspection on Windows

2015-05-17 Thread Daniel Kasak
Hi all. I'm trying to build GIO-0.029 on Windows. I've previously been able to build version 0.025 like this from a cmd.exe shell: set CC=gcc set GI_TYPELIB_PATH=c:\jewelkit\c\lib\girepository-1.0 Makefile.PL dmake dmake test dmake install With version 0.029, I get:

Re: Strategy for unit testing GTK+ applications in C

2015-05-17 Thread richard boaz
you also might want to have a look at google test. at first glance, it seems to satisfy your needs: http://en.wikipedia.org/wiki/Google_Test On Sat, May 16, 2015 at 4:45 AM, John Tall mjta...@gmail.com wrote: Hello. I'm about to start working on a new GTK+ application that will be written