-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathconfigure.ac
More file actions
30 lines (23 loc) · 743 Bytes
/
configure.ac
File metadata and controls
30 lines (23 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(idba, 1.1.3, loneknightpy@gmail.com)
AC_CONFIG_SRCDIR([src/basic/kmer.h])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE(idba, 1.1.3)
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
# Checks for libraries.
#AC_CHECK_LIB(boost_filesystem, main)
#AC_CHECK_LIB(boost_program_options, main)
AC_PROG_RANLIB
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
# Checks for library functions.
AC_FUNC_MEMCMP
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([sqrt])
AC_OUTPUT(Makefile bin/Makefile lib/Makefile test/Makefile script/Makefile)