-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: slightly reorganized sources (preparation for splitting codebase…
… in multiple libraries)
- Loading branch information
1 parent
9064d85
commit cc51340
Showing
17 changed files
with
11,961 additions
and
28,276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
set(MULTIOM_ENCODERS_BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) | ||
|
||
# Enter in the module | ||
message("${OFFSET} + encoders_base sources: ${MULTIOM_ENCODERS_BASE_DIR}") | ||
|
||
# Recursive print | ||
set(OFFSET ${OFFSET}${DOFFSET}) | ||
|
||
# Collect source files in module2 | ||
set( MULTIOM_ENCODERS_BASE_MAIN_SOURCES | ||
${MULTIOM_ENCODERS_BASE_DIR}/grib_section_base_mod.F90 | ||
${MULTIOM_ENCODERS_BASE_DIR}/grib_encoder_options_mod.F90 | ||
${MULTIOM_ENCODERS_BASE_DIR}/grib_encoder_register_mod.F90 | ||
${MULTIOM_ENCODERS_BASE_DIR}/grib_encoder_tunneling_mod.F90 | ||
${MULTIOM_ENCODERS_BASE_DIR}/grib_encoder_lazy_rules_mod.F90 | ||
${MULTIOM_ENCODERS_BASE_DIR}/mapping_options_mod.F90 | ||
${MULTIOM_ENCODERS_BASE_DIR}/filter_options_mod.F90 | ||
) | ||
|
||
# Collect source files in module2 | ||
set( MULTIOM_ENCODERS_BASE_SOURCES | ||
${MULTIOM_ENCODERS_BASE_MAIN_SOURCES} | ||
${MULTIOM_ENCODER_GRIB2_SOURCES} | ||
CACHE INTERNAL "List of all sources in operations directory" | ||
) | ||
|
||
# Optionally, message what has been appended for debugging | ||
foreach(source_file IN LISTS MULTIOM_ENCODERS_BASE_MAIN_SOURCES) | ||
|
||
# Extract the filename (without the directory) | ||
get_filename_component(filename ${source_file} NAME) | ||
|
||
# Print the filename | ||
message("${OFFSET} - ${filename}") | ||
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
MODULE FILTER_OPTIONS_MOD | ||
|
||
PRIVATE | ||
|
||
TYPE :: FILTER_OPTIONS_T | ||
|
||
INTEGER :: TEST | ||
|
||
END TYPE | ||
|
||
PUBLIC :: FILTER_OPTIONS_T | ||
|
||
END MODULE FILTER_OPTIONS_MOD |
Oops, something went wrong.