aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-06-14 20:45:29 +0000
committerGuy Harris <guy@alum.mit.edu>2003-06-14 20:45:29 +0000
commit8178db498052bef672bae1abfdf6ab001c4eae45 (patch)
treecd4e2a516fff203443003c671b6f33d32568151e /config.nmake
parent71424053cd5e62f8f94bdb81af98e7ee2830fc46 (diff)
Define GLIB_LIBS and GTK_LIBS variables in config.nmake (based on
variables the user configures - the user isn't expected to change GLIB_LIBS or GTK_LIBS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate libraries for building stuff that requires only GLib, and stuff that required GTK+ and GLib, respectively, and use those macros in the Makefile.nmake files. svn path=/trunk/; revision=7885
Diffstat (limited to 'config.nmake')
-rw-r--r--config.nmake7
1 files changed, 6 insertions, 1 deletions
diff --git a/config.nmake b/config.nmake
index d60abb3507..15a2b12551 100644
--- a/config.nmake
+++ b/config.nmake
@@ -1,4 +1,4 @@
-# $Id: config.nmake,v 1.44 2003/06/14 20:35:55 guy Exp $
+# $Id: config.nmake,v 1.45 2003/06/14 20:45:23 guy Exp $
VERSION=0.9.13
#
@@ -69,3 +69,8 @@ MAKENSIS="C:/program files/nsis/makensis.exe"
#
GLIB_CFLAGS=/I$(GLIB_DIR) /I$(GLIB_DIR)\gmodule
GTK_CFLAGS=/I$(GTK_DIR) /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 $(GLIB_CFLAGS)
+GLIB_LIBS=$(GLIB_DIR)\glib-$(GLIB_VERSION).lib \
+ $(GLIB_DIR)\gmodule\gmodule-$(GLIB_VERSION).lib
+GTK_LIBS=$(GTK_DIR)\gtk\gtk-$(GTK_VERSION).lib \
+ $(GTK_DIR)\gdk\gdk-$(GTK_VERSION).lib \
+ $(GLIB_LIBS)