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

[library]
    source-dir = "src"

[executables.example_project]
main = "main.f90"
source-dir = "app"
dependencies = []