Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ASCAT mask maker input utility program #729

Merged
merged 12 commits into from
Mar 19, 2024
8 changes: 2 additions & 6 deletions src/Applications/LDAS_App/CMakeLists.txt
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@weiyuan-jiang @gmao-rreichle My update to the CMakeLists works OK and builds but doesn't install, but I don't know if addingesma_add_subdirectories(util/inputs/ASCAT_sm_mask) is the correct thing to do?

Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ ecbuild_add_executable (
SOURCES tile_bin2nc4.F90
LIBS MAPL)

ecbuild_add_executable (
TARGET ascat_mask_maker.x
SOURCES util/inputs/ASCAT_sm_mask/ascat_mask_maker.F90
LIBS MAPL
)

ecbuild_add_executable (
TARGET mwrtm_bin2nc4.x
SOURCES util/inputs/mwRTM_params/mwrtm_bin2nc4.F90
Expand Down Expand Up @@ -51,3 +45,5 @@ install(
FILES ${rc_files} ${nml_files} lenkf.j.template
DESTINATION etc
)

esma_add_subdirectories(util/inputs/ASCAT_sm_mask)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# build without installation

add_executable(ascat_mask_maker.x ascat_mask_maker.F90)
target_link_libraries(ascat_mask_maker.x MAPL)