-
Notifications
You must be signed in to change notification settings - Fork 0
/
fpm.toml
49 lines (42 loc) · 1.2 KB
/
fpm.toml
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
44
45
46
47
48
49
# TOML file for fpm as described at https://fpm.fortran-lang.org/en/spec/manifest.html
name = "M_attr"
version = "1.1.3"
license = "MIT"
author = "John S. Urban"
maintainer = "urbanjost@comcast.net"
copyright = "2021 John S. Urban"
description= "ANSI control escape sequences using an XML-like syntax for attributes like color on video displays and emulators"
categories = ["ANSI escape sequences"]
keywords = ["fortran", "terminal control sequences", "escape sequences", "in-band terminal control" ]
homepage = "https://github.com/urbanjost/M_attr.git"
[build]
external-modules = ["ifport", "dfport"]
module-naming = true
[install]
library=true
[[executable]]
name="tat"
source-dir="app"
main="tat.f90"
[executable.dependencies]
M_CLI2 = { git = "https://github.com/urbanjost/M_CLI2.git" }
#M_CLI2 = { namespace = "GPF" }
[[executable]]
name="redirect"
source-dir="app"
main="redirect.F90"
[[executable]]
name="plain"
source-dir="app"
main="plain.f90"
[[executable]]
name="light"
source-dir="app"
main="light.f90"
[[test]]
name="test_suite"
source-dir="test"
main="test_suite_M_attr.f90"
[test.dependencies]
M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
#M_framework = {namespace = "GPF"}