Skip to content

Commit

Permalink
Merge pull request #394 from GEOS-ESM/add_SMOD_to_filename_v3
Browse files Browse the repository at this point in the history
v3: Add the SMOD word in the target submodule file name
  • Loading branch information
mathomp4 authored Aug 1, 2024
2 parents ef024bd + b5d58e3 commit e9a6aaa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions esma_support/esma_add_fortran_submodules.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit e9a6aaa

Please sign in to comment.