Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Externals.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ hash = 3b8bb78
local_path = src/ufs-weather-model
required = True

[EMC_post]
[UPP]
protocol = git
repo_url = https://github.com/NOAA-EMC/EMC_post
repo_url = https://github.com/NOAA-EMC/UPP
# Specify either a branch name or a hash but not both.
#branch = develop
hash = a49af05
local_path = src/EMC_post
local_path = src/UPP
required = True

[externals_description]
Expand Down
6 changes: 3 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ ExternalProject_Add(ufs-weather-model
BUILD_ALWAYS TRUE
)

ExternalProject_Add(EMC_post
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/EMC_post
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/EMC_post
ExternalProject_Add(UPP
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/UPP
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/UPP
INSTALL_DIR ${CMAKE_INSTALL_PREFIX}
CMAKE_ARGS "-DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}"
BUILD_ALWAYS TRUE
Expand Down