-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfpm.toml
36 lines (32 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
# TOML file for fpm as described at https://fpm.fortran-lang.org/en/spec/manifest.html
name = "M_slices"
version = "0.1.0"
license = "MIT"
author = "John S. Urban"
maintainer = "[email protected]"
copyright = "Copyright 2020, John S. Urban"
description = " produce basic slice plot on POSIX systems with X11 Windows"
categories = ["graphics"]
keywords = ["fortran", "plot", "graph" ]
homepage = "https://github.com/urbanjost/M_slices.git"
[build]
module-naming = true
#auto-executables = true
auto-tests = true
auto-examples = true
#link = ["wif97" ]
[dependencies]
M_draw = { git = "https://github.com/urbanjost/M_draw.git" }
M_io = { git = "https://github.com/urbanjost/M_io.git" }
M_strings = { git = "https://github.com/urbanjost/M_strings.git" }
M_kracken95 = { git = "https://github.com/urbanjost/M_kracken95.git" }
M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
#M_draw = { namespace = "GPF" }
#M_io = { namespace = "GPF" }
#M_strings = { namespace = "GPF" }
#M_kracken95 = { namespace = "GPF" }
#M_framework = {namespace = "GPF"}
[[executable]]
name = "slices"
source-dir = "app/"
main = "slice.f90"