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

Change EMC_post to UPP #171

Merged
merged 1 commit into from
Sep 7, 2021
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