diff options
author | Brad Richardson <brichardson@structint.com> | 2020-04-11 15:15:25 -0500 |
---|---|---|
committer | Brad Richardson <brichardson@structint.com> | 2020-04-11 15:15:25 -0500 |
commit | a65fed0b63ca301882c3d2a44a73cb413ac92c3f (patch) | |
tree | 1e3ada81c4a96d4b923aaf63150086587f25c145 /example_project | |
parent | e7f04140aea8d05b3ba450841c4ac8c39326ecfb (diff) | |
download | fpm-a65fed0b63ca301882c3d2a44a73cb413ac92c3f.tar.gz fpm-a65fed0b63ca301882c3d2a44a73cb413ac92c3f.zip |
Read executable settings from file
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/fpm.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/example_project/fpm.toml b/example_project/fpm.toml index f2ae1c8..f6c6e1d 100644 --- a/example_project/fpm.toml +++ b/example_project/fpm.toml @@ -7,7 +7,8 @@ copyright = "2020 Author" dependencies = [] compiler = "gfortran" -[executables.example_project] -main = "main.f90" +[[executable]] +name = "example_project" source-dir = "app" +main = "main.f90" dependencies = [] |