-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfpm.toml
72 lines (58 loc) · 1.23 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
68
69
70
71
72
name = "fortran-curl"
version = "0.8.0"
license = "ISC"
author = "Philipp Engel"
maintainer = "@interkosmos"
copyright = "Copyright (c) 2021, Philipp Engel"
description = "Fortran 2008 ISO C binding interfaces to libcurl"
keywords = [ "curl", "libcurl", "http", "gopher", "smtp", "imap", "dict" ]
[build]
link = "curl"
[library]
source-dir = "src"
[install]
library = true
[[executable]]
name = "dict"
source-dir = "examples/dict"
main = "dict.f90"
[[executable]]
name = "download"
source-dir = "examples/download"
main = "download.f90"
[[executable]]
name = "getinfo"
source-dir = "examples/getinfo"
main = "getinfo.f90"
[[executable]]
name = "gopher"
source-dir = "examples/gopher"
main = "gopher.f90"
[[executable]]
name = "http"
source-dir = "examples/http"
main = "http.f90"
[[executable]]
name = "imap"
source-dir = "examples/imap"
main = "imap.f90"
[[executable]]
name = "multi"
source-dir = "examples/multi"
main = "multi.f90"
[[executable]]
name = "post"
source-dir = "examples/post"
main = "post.f90"
[[executable]]
name = "smtp"
source-dir = "examples/smtp"
main = "smtp.f90"
[[executable]]
name = "url"
source-dir = "examples/url"
main = "url.f90"
[[executable]]
name = "version"
source-dir = "examples/version"
main = "version.f90"