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
|
name = "fortran-regex"
author = "Federico Perini"
copyright = "Copyright (c) 2022-2023, Federico Perini"
version = "1.1.0"
license = "MIT"
description = "Fortran regex library"
homepage = "https://github.com/perazz/fortran-regex"
keywords = ["regex","regular expressions","strings"]
[build]
auto-executables = false
auto-examples = false
auto-tests = true
module-naming = "regex"
[library]
source-dir = "src"
include-dir = "src"
[install]
library = true
[[test]]
name="regex_tests"
source-dir="test"
main="tests.f90"
|