diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-10-19 15:42:22 -0500 |
---|---|---|
committer | Brad Richardson <everythingfunctional@protonmail.com> | 2020-10-19 15:42:22 -0500 |
commit | a981372352e881d1cc7d542628959c0ac501e96e (patch) | |
tree | 3799ec4d4f9e2df106274ff043b68fcc8973825d /bootstrap/src | |
parent | b927218b5690fe7cd4080af53831311d59db6987 (diff) | |
download | fpm-a981372352e881d1cc7d542628959c0ac501e96e.tar.gz fpm-a981372352e881d1cc7d542628959c0ac501e96e.zip |
Add test for submodule object file name
Diffstat (limited to 'bootstrap/src')
-rw-r--r-- | bootstrap/src/BuildModel.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap/src/BuildModel.hs b/bootstrap/src/BuildModel.hs index 9a9866a..70046d7 100644 --- a/bootstrap/src/BuildModel.hs +++ b/bootstrap/src/BuildModel.hs @@ -53,6 +53,7 @@ data Source = } | Submodule { submoduleSourceFileName :: FilePath + , submoduleObjectFileName :: FilePath -> FilePath } processRawSource :: RawSource -> Source @@ -76,7 +77,9 @@ processRawSource rawSource = , moduleProducesSmod = hasModuleSubprogramDeclaration parsedContents } else if hasSubmoduleDeclaration parsedContents - then Submodule { submoduleSourceFileName = sourceFileName } + then Submodule { submoduleSourceFileName = sourceFileName + , submoduleObjectFileName = objectFileName + } else undefined pathSeparatorsToUnderscores :: FilePath -> FilePath |