-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,7 +136,6 @@ if (BUILD_RRFS_UTILS) | |
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX} -DCMAKE_INSTALL_BINDIR=${CMAKE_INSTALL_BINDIR} | ||
BUILD_ALWAYS TRUE | ||
STEP_TARGETS build | ||
DEPENDS GSI | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
danielabdi-noaa
Author
Collaborator
|
||
) | ||
endif() | ||
|
||
|
Is there a corresponding
find_package(GSI)
to compensate for this? GSI is required for building rrfs_utl, so the dependency checks need to make sure it is available at the cmake step before the build starts. If the assumption is that GSI is built separately elsewhere, then GSI must be treated as any other dependency in the same way that NetCDF, etc is treated. I do not believe GSI provides a genericfind_package()
functionality yet.