-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfigure.ac
More file actions
43 lines (30 loc) · 875 Bytes
/
configure.ac
File metadata and controls
43 lines (30 loc) · 875 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
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(BLOOMFILTER, 1.2.1, cjustin@bcgsc.ca)
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE()
AC_CONFIG_HEADER([config.h])
AC_PROG_RANLIB
# Checks for programs.
AC_PROG_CXX
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T
# Find the absolute paths.
my_abs_srcdir=$(cd $srcdir; pwd)
# Checks for header files.
AC_LANG([C++]) #sets the auto conf to look for c++ headers
# Check for OpenMP.
AC_OPENMP
if test -z $OPENMP_CXXFLAGS; then
OPENMP_CXXFLAGS=-Wno-unknown-pragmas
fi
# Set compiler flags.
AC_SUBST(AM_CXXFLAGS, '-Wall -Wextra -Werror')
# Checks for typedefs, structures, and compiler characteristics.
AC_CONFIG_FILES([
Makefile
Tests/Unit/Makefile
Tests/AdHoc/Makefile
])
AC_OUTPUT