diff options
author | LKedward <laurence.kedward@bristol.ac.uk> | 2020-09-19 13:42:07 +0100 |
---|---|---|
committer | LKedward <laurence.kedward@bristol.ac.uk> | 2020-09-19 13:42:07 +0100 |
commit | 0308cf5ecdc4974bd08dc352ebd6a39a548d55cc (patch) | |
tree | 3d874677bef45b5db78b1a11e2a3f2bfc07019aa /test/example_packages/hello_complex/source/subdir | |
parent | a110523b8ff0eec8229554917909d4ab05690ea6 (diff) | |
download | fpm-0308cf5ecdc4974bd08dc352ebd6a39a548d55cc.tar.gz fpm-0308cf5ecdc4974bd08dc352ebd6a39a548d55cc.zip |
Update: hello_complex example with sub directory
To demonstrate and test recursive source file discovery.
Diffstat (limited to 'test/example_packages/hello_complex/source/subdir')
-rw-r--r-- | test/example_packages/hello_complex/source/subdir/constants.f90 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/example_packages/hello_complex/source/subdir/constants.f90 b/test/example_packages/hello_complex/source/subdir/constants.f90 new file mode 100644 index 0000000..59d6e5f --- /dev/null +++ b/test/example_packages/hello_complex/source/subdir/constants.f90 @@ -0,0 +1,7 @@ +module subdir_constants +implicit none + +character(*), parameter :: GREET_STR = 'Hello, ' +character(*), parameter :: FAREWELL_STR = 'Goodbye, ' + +end module subdir_constants |