aboutsummaryrefslogtreecommitdiff
path: root/example_project/fpm.toml
blob: eda6e6b5e643a5c504754ff3c16007285ca67c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name = "example_project"
version = "0.1.0"
license = "BSD3"
author = "Author"
maintainer = "example@example.com"
copyright = "2020 Author"
dependencies = []
compiler = "gfortran"
devel-options = ["-g", "-Wall", "-Wextra", "-Werror", "-pedantic"]
release-options = ["-O3"]

[library]
source-dirs = "src"

[executables.Hello_world]
main = "Hello_world.f90"
source-dirs = "app"
linker-options = ["-O3"]
dependencies = []