aboutsummaryrefslogtreecommitdiff
path: root/example_project
diff options
context:
space:
mode:
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 = []