diff options
author | Brad Richardson <brichardson@structint.com> | 2020-03-24 11:44:25 -0500 |
---|---|---|
committer | Brad Richardson <brichardson@structint.com> | 2020-03-24 11:44:25 -0500 |
commit | 32ef5485eefe9540b60b4c6cf626e61eefe6e6fd (patch) | |
tree | 1911107450bae66a47dac3cc550c62c46fc6a3e2 /example_project/fpm.toml | |
parent | 19cc33934050f2b1f541981da4ed2b8accacdb44 (diff) | |
download | fpm-32ef5485eefe9540b60b4c6cf626e61eefe6e6fd.tar.gz fpm-32ef5485eefe9540b60b4c6cf626e61eefe6e6fd.zip |
Add an fpm.toml to example project
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 = [] |