aboutsummaryrefslogtreecommitdiff
path: root/test/example_packages/hello_fpm
diff options
context:
space:
mode:
Diffstat (limited to 'test/example_packages/hello_fpm')
-rw-r--r--test/example_packages/hello_fpm/.gitignore1
-rw-r--r--test/example_packages/hello_fpm/app/main.f909
-rw-r--r--test/example_packages/hello_fpm/fpm.toml4
3 files changed, 0 insertions, 14 deletions
diff --git a/test/example_packages/hello_fpm/.gitignore b/test/example_packages/hello_fpm/.gitignore
deleted file mode 100644
index a007fea..0000000
--- a/test/example_packages/hello_fpm/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-build/*
diff --git a/test/example_packages/hello_fpm/app/main.f90 b/test/example_packages/hello_fpm/app/main.f90
deleted file mode 100644
index 5df6d64..0000000
--- a/test/example_packages/hello_fpm/app/main.f90
+++ /dev/null
@@ -1,9 +0,0 @@
-program hello_fpm
- use farewell_m, only: make_farewell
- use greet_m, only: make_greeting
-
- implicit none
-
- print *, make_greeting("fpm")
- print *, make_farewell("fpm")
-end program hello_fpm
diff --git a/test/example_packages/hello_fpm/fpm.toml b/test/example_packages/hello_fpm/fpm.toml
deleted file mode 100644
index d94d904..0000000
--- a/test/example_packages/hello_fpm/fpm.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-name = "hello_fpm"
-
-[dependencies]
-hello_complex = { path = "../hello_complex" }