-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfpm.toml
54 lines (46 loc) · 1.59 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
50
51
52
53
54
# TOML file for fpm as described at https://fpm.fortran-lang.org/en/spec/manifest.html
name = "M_fixedform"
version = "0.1.1"
license = "MIT"
author = "John S. Urban"
maintainer = "[email protected]"
copyright = "Copyright 2021, John S. Urban"
description = "generate fixed forms using ncurses(3c)"
categories = ["TLI","ncurses"]
keywords = ["fortran", "fortran-package-manager","screen formatting","ncurses"]
homepage = "https://github.com/urbanjost/M_fixedform"
[build]
auto-executables = true
auto-tests = true
auto-examples = true
# new default with v0.8.0
# force module naming rules to avoid collisions with other packages
#module-naming = true
# traditional where user can use any module name
#module-naming = false
# new section with v0.8.0
#[fortran]
#implicit-typing = false
#implicit-external = false
#source-form = "free"
# traditional pre-version8 compatibility
#implicit-typing = true
#implicit-external = true
#source-form = "default"
[install]
library = false
[library]
source-dir = "src"
include-dir = "src/inc"
# example
#[[test]]
#name="runTests"
#source-dir="test"
#main="test_suite_easy.f90"
#[test.dependencies]
##M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
[dev-dependencies]
M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
M_ncurses = { git = "https://github.com/urbanjost/M_ncurses.git" }
M_kracken = { git = "https://github.com/urbanjost/M_kracken.git" }
M_time = { git = "https://github.com/urbanjost/M_time.git" }