diff options
author | Laurence Kedward <laurence.kedward@bristol.ac.uk> | 2020-10-20 17:01:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 17:01:36 +0100 |
commit | ad9ebadbde4405a544e5cf32f1f5d3507a7e2dfd (patch) | |
tree | 2d68be9ad477c914a4a5733beed2bf66b5ba2cba /test/example_packages/hello_complex_2 | |
parent | 49de89e8608da15a04bed388e2d1774e1737acd8 (diff) | |
parent | eebe0ff0be5e4541dd00951fc593409eb92ea737 (diff) | |
download | fpm-ad9ebadbde4405a544e5cf32f1f5d3507a7e2dfd.tar.gz fpm-ad9ebadbde4405a544e5cf32f1f5d3507a7e2dfd.zip |
Merge pull request #193 from LKedward/local-depends
Local path and remote git dependencies
Diffstat (limited to 'test/example_packages/hello_complex_2')
-rw-r--r-- | test/example_packages/hello_complex_2/app/say_hello/app_hello_mod.f90 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/example_packages/hello_complex_2/app/say_hello/app_hello_mod.f90 b/test/example_packages/hello_complex_2/app/say_hello/app_hello_mod.f90 index 5c426c8..c5795cb 100644 --- a/test/example_packages/hello_complex_2/app/say_hello/app_hello_mod.f90 +++ b/test/example_packages/hello_complex_2/app/say_hello/app_hello_mod.f90 @@ -1,4 +1,6 @@ module app_hello_mod implicit none +integer :: hello_int = 42 + end module app_hello_mod |