aboutsummaryrefslogtreecommitdiff
path: root/example_fpm.toml
diff options
context:
space:
mode:
authorOndřej Čertík <ondrej@certik.us>2020-04-30 00:52:06 -0600
committerGitHub <noreply@github.com>2020-04-30 00:52:06 -0600
commitf071fcc750da95e008f622d96fb033a4b0f73039 (patch)
tree787ab0d77c9db8a6c2982cd1b994e7bf88731f5f /example_fpm.toml
parenta8dabeea48210450e6b1088c95abf80358f40e3c (diff)
parentd6e5d3055946e58bd17dfc156bcffe88ef08b5dd (diff)
downloadfpm-f071fcc750da95e008f622d96fb033a4b0f73039.tar.gz
fpm-f071fcc750da95e008f622d96fb033a4b0f73039.zip
Merge pull request #54 from everythingfunctional/AdditionalTesting
Additional testing
Diffstat (limited to 'example_fpm.toml')
-rw-r--r--example_fpm.toml25
1 files changed, 0 insertions, 25 deletions
diff --git a/example_fpm.toml b/example_fpm.toml
deleted file mode 100644
index b7a2057..0000000
--- a/example_fpm.toml
+++ /dev/null
@@ -1,25 +0,0 @@
-name = "package-name"
-version = "0.1.0"
-license = "BSD3"
-author = "Author name here"
-maintainer = "example@example.com"
-copyright = "2020 Author name here"
-dependencies = ["../std-lib.tar.gz"]
-compiler = "gfortran"
-devel-options = ["-g", "-Wall", "-Wextra", "-Werror", "-pedantic"]
-release-options = ["-O3"]
-
-[library]
-source-dirs = "src"
-
-[executables.executable-name]
-main = "Main.f90"
-source-dirs = "app"
-linker-options = ["-O3"]
-dependencies = ["iso_varying_string"]
-
-[tests.test-name]
-main = "Spec.f90"
-source-dirs = "test"
-linker-options = ["-Og"]
-dependencies = ["vegetables >= 1.0 && < 2.0"]