blob: 5ad7e975772732ed8c79f51c5c5b5b6c712b2542 (
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.example_project]
main = "main.f90"
source-dirs = "app"
linker-options = ["-O3"]
dependencies = []
|