~dobey/nwnights/trunk

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Rodney Dawes
  • Date: 2009-03-22 19:04:23 UTC
  • Revision ID: dobey@gnome.org-20090322190423-4jvz8ek1h81cordd
        Ignore some more files
        Add Makefile rules to render and distribute the generated PNG files
        Specify some needed variables in the configure script

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
AC_INIT([nwnights], [1.69])
5
5
AC_CONFIG_SRCDIR([config.h.in])
6
 
AC_COPYRIGHT([Copyright 2008 Rodney Dawes])
 
6
AC_COPYRIGHT([Copyright 2008-2009 Rodney Dawes])
7
7
 
8
8
AM_INIT_AUTOMAKE([1.9 foreign tar-ustar])
9
9
AM_CONFIG_HEADER([config.h])
20
20
AC_SUBST([GLIB_CFLAGS])
21
21
AC_SUBST([GLIB_LIBS])
22
22
 
 
23
# Define the toplevel path here
 
24
AC_SUBST(themedir, "\${datadir}/icons/hicolor")
 
25
 
 
26
# Icon sizes we want to install
 
27
AC_SUBST([render_sizes], ["48x48"])
 
28
 
 
29
# Check for icontool-render as we need it to render the SVG to PNG files
 
30
AC_PATH_PROG([ICON_RENDER], [icontool-render],
 
31
                            AC_MSG_ERROR([icontool is required for nwnights]))
 
32
 
23
33
AC_CONFIG_FILES([
24
34
Makefile
25
35
libnwntranslate/Makefile
27
37
])
28
38
 
29
39
AC_OUTPUT
30