Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ else ()
target_compile_definitions(${this} PRIVATE STDC)
endif ()

esma_add_subdirectories (@ncar_topo utils_topo)

ecbuild_add_executable (TARGET CombineRasters.x SOURCES CombineRasters.F90 LIBS MAPL ${this})
ecbuild_add_executable (TARGET mkCatchParam.x SOURCES mkCatchParam.F90 LIBS MAPL ${this} OpenMP::OpenMP_Fortran)
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
esma_add_subdirectories (soil routing)
esma_add_subdirectories (soil routing topography)
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# CMakeLists.txt for Utils/Raster/preproc/topography
if(COMMAND esma_add_subdirectories)
esma_add_subdirectories(@ncar_topo utils_topo)
else()
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/@ncar_topo/CMakeLists.txt")
add_subdirectory(@ncar_topo)
endif()
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/utils_topo/CMakeLists.txt")
add_subdirectory(utils_topo)
endif()
endif()

Loading