~neutrinodevs/neutrino/trunk

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Raphael Isemann
  • Date: 2012-10-17 21:33:51 UTC
  • Revision ID: teemperor@googlemail.com-20121017213351-ifiolp4tzbqze6fc
first implementation

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl Process this file with autoconf to produce a configure script.
 
2
dnl Created by Anjuta application wizard.
 
3
 
 
4
AC_INIT(roboto, 0.1)
 
5
 
 
6
AC_CONFIG_HEADERS([config.h])
 
7
 
 
8
AM_INIT_AUTOMAKE([1.11])
 
9
 
 
10
AM_SILENT_RULES([yes])
 
11
 
 
12
AC_PROG_CC
 
13
 
 
14
 
 
15
LT_INIT
 
16
 
 
17
 
 
18
dnl Check for vala
 
19
AM_PROG_VALAC([0.10.0])
 
20
 
 
21
 
 
22
PKG_CHECK_MODULES(ROBOTO, [gtk+-3.0 ])
 
23
 
 
24
 
 
25
AC_OUTPUT([
 
26
Makefile
 
27
src/Makefile
 
28
 
 
29
])