Bump up serial.
[autotroll.git] / configure.ac
blobdb24e8ea4f1604d68651da5f9f0c606cfaf25c58
1 # This file is part of AutoTroll.
2 # Copyright (C) 2006  Benoit Sigoure <tsuna@lrde.epita.fr>
4 # AutoTroll is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 # USA.
19 # In addition, as a special exception, the copyright holders of AutoTroll
20 # give you unlimited permission to copy, distribute and modify the configure
21 # scripts that are the output of Autoconf when processing the macros of
22 # AutoTroll.  You need not follow the terms of the GNU General Public License
23 # when using or distributing such scripts, even though portions of the text of
24 # AutoTroll appear in them. The GNU General Public License (GPL) does govern
25 # all other use of the material that constitutes AutoTroll.
27 # This special exception to the GPL applies to versions of AutoTroll
28 # released by the copyright holders of AutoTroll.  Note that people who make
29 # modified versions of AutoTroll are not obligated to grant this special
30 # exception for their modified versions; it is their choice whether to do so.
31 # The GNU General Public License gives permission to release a modified version
32 # without this exception; this exception also makes it possible to release a
33 # modified version which carries forward this exception.
35 ## ------------- ##
36 ## Package setup ##
37 ## ------------- ##
39 AC_INIT([AutoTroll Demo], [0.2], [tsuna@lrde.epita.fr], [autotroll-demo])
41 AC_CONFIG_AUX_DIR([build-aux])
43 AM_INIT_AUTOMAKE([foreign -Wall])
45 ## -------------------- ##
46 ## Tool/Compilers setup ##
47 ## -------------------- ##
49 # Look for a C++ compiler.
50 AC_LANG([C++])
51 AC_PROG_CXX
53 # If you need to create a library, USE libtool:
54 AC_PROG_LIBTOOL
56 # If you happen to have some C code:
57 #AC_LANG([C])
58 #AC_PROG_CC
60 # AutoTroll with Qt.
61 AT_WITH_QT
63 AC_CONFIG_FILES([
64   Makefile
65     src/Makefile
66     gui/Makefile
67     tests/Makefile
70 AC_OUTPUT