-
Notifications
You must be signed in to change notification settings - Fork 0
/
fpm.toml
43 lines (35 loc) · 1.1 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
# TOML file for fpm as described at https://fpm.fortran-lang.org/en/spec/manifest.html
name = "M_calcomp"
version = "0.1.0"
license = "Public Domain"
maintainer = "urbanjost@comcast.net"
author = "John S. Urban"
copyright = "Copyright 2020 John S. Urban"
description = "an old Calcomp look-alike graphics library. Not for new large code development"
categories = ["graphics"]
keywords = ["fortran", "Calcomp", "plot", "graph", "draw"]
homepage = "https://github.com/urbanjost/M_calcomp"
[install]
library = true
[build]
link = "X11"
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = false
[fortran]
implicit-typing = false
implicit-external = false
source-form = "free"
[library]
source-dir="src"
[dependencies]
M_draw = { git = "https://github.com/urbanjost/M_draw.git" }
M_strings = { git = "https://github.com/urbanjost/M_strings.git" }
[dev-dependencies]
[[test]]
name="test_suite_M_calcomp"
source-dir="test"
main="test_suite_M_calcomp.f90"
[test.dependencies]
M_framework = { git = "https://github.com/urbanjost/M_framework.git" }