diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-03-25 18:06:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 18:06:00 -0500 |
commit | ab9d22f9a266ec540bc9b0248f180b26dc185ea6 (patch) | |
tree | 3f305dc61063cdc7f4b89d4340de0b090c615ba3 /example_project/fpm.toml | |
parent | 6fe22cfa6d7813ec5c6fca390a992b56ac646778 (diff) | |
parent | 97a21c32b70440ab2017208063db1638ff35e1f9 (diff) | |
download | fpm-ab9d22f9a266ec540bc9b0248f180b26dc185ea6.tar.gz fpm-ab9d22f9a266ec540bc9b0248f180b26dc185ea6.zip |
Merge pull request #47 from everythingfunctional/ReadFpmToml
Read fpm toml
Diffstat (limited to 'example_project/fpm.toml')
-rw-r--r-- | example_project/fpm.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/example_project/fpm.toml b/example_project/fpm.toml new file mode 100644 index 0000000..eda6e6b --- /dev/null +++ b/example_project/fpm.toml @@ -0,0 +1,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 = [] |