-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
36 lines (26 loc) · 866 Bytes
/
configure.ac
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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.70])
AC_INIT([libxint], [0.2], [])
AC_CONFIG_SRCDIR([include/libxint/uint.hpp])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([foreign])
# Checks for programs.
AC_PROG_CXX
AC_PROG_RANLIB
AC_LANG([C++])
#AX_CXX_COMPILE_STDCXX([20], [ext])
AX_APPEND_COMPILE_FLAGS([-std=c++20], [CXX])
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile
include/libxint/Makefile
examples/Makefile
tests/Makefile
tests/catch2/Makefile
tests/utils/Makefile])
AC_OUTPUT