Fix: (re)add gthread to make the dummy work

This commit is contained in:
Fischlurch 2009-04-24 17:33:03 +02:00
parent ae67c6db5c
commit bdcef03834
2 changed files with 3 additions and 3 deletions

View file

@ -353,7 +353,7 @@ def defineBuildTargets(env, artifacts):
# the Lumiera GTK GUI
envGtk = env.Clone()
envGtk.mergeConf(['gtkmm-2.4','cairomm-1.0','gdl','xv','xext','sm'])
envGtk.mergeConf(['gtkmm-2.4','cairomm-1.0','gdl','gthread-2.0','xv','xext','sm'])
envGtk.Append(CPPDEFINES='LUMIERA_PLUGIN', LIBS=core)
objgui = srcSubtree(envGtk,'$SRCDIR/gui')

View file

@ -8,7 +8,7 @@ Import('env','artifacts','core')
support_lib = artifacts['support']
envSvg = env.Clone()
envSvg.mergeConf(['librsvg-2.0'])
envSvg.mergeConf(['librsvg-2.0','gthread-2.0'])
envSvg.Append(LIBS=support_lib)
@ -19,7 +19,7 @@ rsvg = envSvg.Program('#$BINDIR/rsvg-convert','rsvg-convert.c') ## f
# build additional test and administrative tools....
artifacts['tools'] = [ env.Program('#$BINDIR/hello-world','hello.c') #### hello world (checks C build)
+ env.Program('#$BINDIR/try', 'try.cpp') #### to try out some feature...
+ luidgen
# + luidgen
+ vgsuppr
+ rsvg
]