Lots of rearranging. Source now found in the trunk/src folder.
[asgard.git] / configure.ac
blob90a5e3073b685cb8ebcb3886f04d588b883d15cf
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ(2.61)
5 AC_INIT([FULL-PACKAGE-NAME],[VERSION],[BUG-REPORT-ADDRESS])
6 AM_INIT_AUTOMAKE(asgard, 0.3.0)
7 AC_CONFIG_SRCDIR([src/QueryGenerator.cpp])
8 AC_CONFIG_HEADER([config.h])
10 # Checks for programs.
11 AC_PROG_CXX
12 AC_PROG_CC
13 AC_PROG_MAKE_SET
15 # Checks for libraries.
16 # FIXME: Replace `main' with a function in `-lsqlite3':
17 AC_CHECK_LIB([sqlite3], [main])
19 # Checks for header files.
21 # Checks for typedefs, structures, and compiler characteristics.
22 AC_HEADER_STDBOOL
23 AC_C_CONST
25 # Checks for library functions.
26 AC_CHECK_FUNCS([pow sqrt assert])
28 AC_CONFIG_FILES([Makefile
29                  src/Makefile])
31 AC_OUTPUT