]> sigrok.org Git - sigrok-gtk.git/blame - configure.ac
Put most autotools files into autostuff/.
[sigrok-gtk.git] / configure.ac
CommitLineData
3f63165c
UH
1##
2## This file is part of the sigrok project.
3##
4## Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
5##
6## This program is free software: you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation, either version 3 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program. If not, see <http://www.gnu.org/licenses/>.
18##
19
20AC_INIT([sigrok-gtk], [0.1], [gareth@blacksphere.co.nz])
21AC_CONFIG_SRCDIR([main.c])
22AC_PREREQ(2.57)
2e0801c6
UH
23AC_CONFIG_MACRO_DIR([autostuff])
24AC_CONFIG_AUX_DIR([autostuff])
3f63165c
UH
25AM_INIT_AUTOMAKE([-Wall -Werror foreign std-options])
26m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
27
28CFLAGS="-g -Wall -Wextra"
29
30AC_PROG_CC
31AM_PROG_AS
32AC_STDC_HEADERS
33AC_PROG_INSTALL
34
35# Initialize libtool.
36LT_INIT
37
38# Initialize pkg-config.
39# We require at least 0.22, as "Requires.private" behaviour changed there.
40PKG_PROG_PKG_CONFIG([0.22])
41
42AC_CHECK_TOOL([WINDRES], windres, [])
43AM_CONDITIONAL([WINDOWS], test x$WINDRES != x)
44
45PKG_CHECK_MODULES([gtk], [gtk+-2.0 gmodule-2.0],
46 [CFLAGS="$CFLAGS $gtk_CFLAGS";
47 LIBS="$LIBS $gtk_LIBS"])
48
49PKG_CHECK_MODULES([libsigrok], [libsigrok],
50 [CFLAGS="$CFLAGS $libsigrok_CFLAGS";
51 LIBS="$LIBS $libsigrok_LIBS"])
52
53AC_CONFIG_FILES([Makefile])
54AC_OUTPUT
55