-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfigure.ac
More file actions
32 lines (23 loc) · 821 Bytes
/
configure.ac
File metadata and controls
32 lines (23 loc) · 821 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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.72])
AC_INIT([Chemical Kinetics Solver], [VERSION], [BUG-REPORT-ADDRESS])
# auxilliary directory
#AC_CONFIG_AUX_DIR([config])
# defines header and source code
AC_CONFIG_SRCDIR([src/main.cpp])
#AC_CONFIG_HEADERS([include/Headers.hpp])
# Checks for programs/compilers:
AC_PROG_CXX
# https://www.gnu.org/software/autoconf/manual/autoconf-2.67/html_node/Fortran-Compiler.html#Fortran-Compiler
AC_PROG_FC
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
AC_TYPE_SIZE_T
# Checks for library functions.
AC_FUNC_STRTOD
AC_CHECK_FUNCS([pow strtol])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT