From b5d58e3c42499670b00ca321cbfb4ab7b6cccd09 Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Thu, 1 Aug 2024 14:12:13 -0400 Subject: [PATCH] v3: Add the SMOD word in the target submodule file name --- CHANGELOG.md | 7 +++++++ esma_support/esma_add_fortran_submodules.cmake | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 926ccf46..84d561a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Deprecated +## [3.49.0] - 2024-08-01 + +### Changed + +- Edit the file `esma_add_fortran_submodules.cmake` to add the `SMOD` word to the target submodule file name. + + ## [3.48.0] - 2024-07-15 ### Changed diff --git a/esma_support/esma_add_fortran_submodules.cmake b/esma_support/esma_add_fortran_submodules.cmake index 108e5680..dca5f4b3 100644 --- a/esma_support/esma_add_fortran_submodules.cmake +++ b/esma_support/esma_add_fortran_submodules.cmake @@ -13,8 +13,8 @@ function(esma_add_fortran_submodules) foreach(file ${ARG_SOURCES}) set(input ${CMAKE_CURRENT_SOURCE_DIR}/${ARG_SUBDIRECTORY}/${file}) - set(output ${CMAKE_CURRENT_BINARY_DIR}/${ARG_SUBDIRECTORY}_${file}) - set(esma_internal "esma_internal_${ARG_SUBDIRECTORY}_${file}") + set(output ${CMAKE_CURRENT_BINARY_DIR}/${ARG_SUBDIRECTORY}_SMOD_${file}) + set(esma_internal "esma_internal_${ARG_SUBDIRECTORY}_SMOD_${file}") add_custom_command( OUTPUT ${output}