This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/config.m4

13 lines
336 B
Plaintext
Raw Normal View History

2019-02-05 13:31:16 +00:00
PHP_ARG_ENABLE(arma, for armadillo support,
[ --enable-arma Enable armadillo support])
if test "$PHP_ARMA" != "no"; then
PHP_REQUIRE_CXX()
2019-03-22 08:30:44 +00:00
ARMA_SRC=" \
src/php_arma.cc \
src/interfaces.cc \
2019-03-22 08:30:44 +00:00
src/constants.cc \
src/complex.cc"
2019-03-20 14:55:19 +00:00
PHP_NEW_EXTENSION(arma, $ARMA_SRC, $ext_shared, , -std=c++17)
2019-02-05 13:31:16 +00:00
fi