test/yat-hello/configure.ac

Code
Comments
Other
Rev Date Author Line
2438 12 Mar 11 peter 1 ## Process this file with autoconf to produce a configure script.
2438 12 Mar 11 peter 2 ##
2438 12 Mar 11 peter 3 ## $Id$
2438 12 Mar 11 peter 4
4089 07 Sep 21 peter 5 # Copyright (C) 2011, 2014, 2021 Peter Johansson
2438 12 Mar 11 peter 6 #
2438 12 Mar 11 peter 7 # This file is part of the yat library, http://dev.thep.lu.se/yat
2438 12 Mar 11 peter 8 #
2438 12 Mar 11 peter 9 # The yat library is free software; you can redistribute it
2438 12 Mar 11 peter 10 # and/or modify it under the terms of the GNU General Public License as
2438 12 Mar 11 peter 11 # published by the Free Software Foundation; either version 3 of the
2438 12 Mar 11 peter 12 # License, or (at your option) any later version.
2438 12 Mar 11 peter 13 #
2438 12 Mar 11 peter 14 # The yat library is distributed in the hope that it will be useful,
2438 12 Mar 11 peter 15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
2438 12 Mar 11 peter 16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
2438 12 Mar 11 peter 17 # General Public License for more details.
2438 12 Mar 11 peter 18 #
2438 12 Mar 11 peter 19 # You should have received a copy of the GNU General Public License
2438 12 Mar 11 peter 20 # along with yat. If not, see <http://www.gnu.org/licenses/>.
2438 12 Mar 11 peter 21 #
2438 12 Mar 11 peter 22
2438 12 Mar 11 peter 23 AC_INIT([yat-hello],[1.0])
2438 12 Mar 11 peter 24 AC_CONFIG_SRCDIR([hello.cc])
2477 15 Apr 11 peter 25 AC_CONFIG_AUX_DIR([build-aux])
3313 25 Aug 14 peter 26 AC_CONFIG_HEADERS([config.h])
2438 12 Mar 11 peter 27 AM_INIT_AUTOMAKE([foreign])
2438 12 Mar 11 peter 28 AC_CONFIG_MACRO_DIR([m4])
2438 12 Mar 11 peter 29 AC_LANG([C++])
2438 12 Mar 11 peter 30 AC_PROG_CXXCPP
2438 12 Mar 11 peter 31 AC_PROG_CXX
4063 05 Jun 21 peter 32 LT_INIT
2438 12 Mar 11 peter 33 YAT_CHECK_YAT([0.4],[],[AC_MSG_ERROR([could not find required version of yat])])
2438 12 Mar 11 peter 34 AC_CONFIG_FILES([Makefile])
2438 12 Mar 11 peter 35 AC_OUTPUT