-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfpm.toml
67 lines (55 loc) · 1.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
name = "forcolormap"
description= "A Fortran colormap library"
version = "0.9.0"
license = "MIT"
author = "Vincent Magnin, Seyed Ali Ghasemi"
copyright = "Copyright 2023-2024, Vincent Magnin & Seyed Ali Ghasemi"
maintainer = "https://github.com/vmagnin/forcolormap/issues"
homepage = "https://github.com/vmagnin/forcolormap"
categories = ["graphics"]
keywords = ["Fortran", "colormap", "fpm", "CMake"]
[dependencies]
forimage = {git="https://github.com/gha3mi/forimage.git"}
[[example]]
name = "demo"
source-dir = "example"
main = "demo.f90"
[[example]]
name = "demo_reverse"
source-dir = "example"
main = "demo_reverse.f90"
[[example]]
name = "example1"
source-dir = "example"
main = "example1.f90"
[[example]]
name = "info"
source-dir = "example"
main = "info.f90"
[[example]]
name = "colormaps_list"
source-dir = "example"
main = "colormaps_list.f90"
[[example]]
name = "extract"
source-dir = "example"
main = "extract.f90"
[[example]]
name = "modify"
source-dir = "example"
main = "modify.f90"
[[example]]
name = "create"
source-dir = "example"
main = "create.f90"
[build]
auto-executables = true
auto-tests = true
auto-examples = false
module-naming = false
[install]
library = false
[fortran]
implicit-typing = false
implicit-external = false
source-form = "free"