aboutsummaryrefslogtreecommitdiff
path: root/example_project
diff options
context:
space:
mode:
authorBrad Richardson <brichardson@structint.com>2020-03-30 14:50:00 -0500
committerBrad Richardson <brichardson@structint.com>2020-03-30 14:50:00 -0500
commitb551da522ac590d1d3b81f1183cf7f3d1f8c48ad (patch)
tree83b2d6593ec48913f9c211358ff42ae4d3873812 /example_project
parentf12dbc32b463f4c54737bbd56bdccb30115a7658 (diff)
downloadfpm-b551da522ac590d1d3b81f1183cf7f3d1f8c48ad.tar.gz
fpm-b551da522ac590d1d3b81f1183cf7f3d1f8c48ad.zip
Read some additional options from the fpm.toml file
Diffstat (limited to 'example_project')
-rw-r--r--example_project/fpm.toml7
1 files changed, 3 insertions, 4 deletions
diff --git a/example_project/fpm.toml b/example_project/fpm.toml
index 5ad7e97..a8bded7 100644
--- a/example_project/fpm.toml
+++ b/example_project/fpm.toml
@@ -6,14 +6,13 @@ maintainer = "example@example.com"
copyright = "2020 Author"
dependencies = []
compiler = "gfortran"
-devel-options = ["-g", "-Wall", "-Wextra", "-Werror", "-pedantic"]
+debug-options = ["-g", "-Wall", "-Wextra", "-Werror", "-pedantic"]
release-options = ["-O3"]
[library]
-source-dirs = "src"
+ source-dir = "src"
[executables.example_project]
main = "main.f90"
-source-dirs = "app"
-linker-options = ["-O3"]
+source-dir = "app"
dependencies = []