You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
374 B
Plaintext
30 lines
374 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
dnl Created by Anjuta application wizard.
|
|
|
|
AC_INIT(dnd_charsheet, 0.1)
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
AM_INIT_AUTOMAKE([1.11])
|
|
|
|
AM_SILENT_RULES([yes])
|
|
|
|
AC_PROG_CC
|
|
|
|
|
|
LT_INIT
|
|
|
|
|
|
dnl Check for vala
|
|
AM_PROG_VALAC([0.10.0])
|
|
|
|
|
|
PKG_CHECK_MODULES(DND_CHARSHEET, [gtk+-3.0 ])
|
|
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
src/Makefile
|
|
|
|
])
|