diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-13 14:06:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-13 14:06:34 -0600 |
commit | 4b2f8bca5b2289d18d5f0b6f7e17a0ccac428b47 (patch) | |
tree | f40be245aac56feab85b05d7f63df0bbba2b1afb /test/example_packages/hello_complex/fpm.toml | |
parent | 02b07f45052d5f5f69697aacf646ea8736880fb8 (diff) | |
parent | b86c74bef761ec48ff17cf043a26b11b9bf3954b (diff) | |
download | fpm-4b2f8bca5b2289d18d5f0b6f7e17a0ccac428b47.tar.gz fpm-4b2f8bca5b2289d18d5f0b6f7e17a0ccac428b47.zip |
Merge pull request #117 from everythingfunctional/FixExecutableSourceName
Fix bug with case in program source file name.
Diffstat (limited to 'test/example_packages/hello_complex/fpm.toml')
-rw-r--r-- | test/example_packages/hello_complex/fpm.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/example_packages/hello_complex/fpm.toml b/test/example_packages/hello_complex/fpm.toml index d185745..30ed293 100644 --- a/test/example_packages/hello_complex/fpm.toml +++ b/test/example_packages/hello_complex/fpm.toml @@ -4,9 +4,9 @@ name = "hello_complex" source-dir="source" [[executable]] -name="say_hello" +name="say_Hello" source-dir="apps/say_hello" -main="say_hello.f90" +main="say_Hello.f90" [[executable]] name="say_goodbye" |