Skip to content

Commit

Permalink
Merge pull request #196 from BerkeleyLab/fix-#195
Browse files Browse the repository at this point in the history
Fixes #195
  • Loading branch information
rouson authored Aug 14, 2024
2 parents 3db18b8 + e34e81d commit 3443f8d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
11 changes: 5 additions & 6 deletions cloud-microphysics/fpm.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name = "icar-trainer"
version = "0.0.0"
license = "license"
author = "Damian Rouson, Tan Nguyen, Jordan Welsman, David Torres, Brad Richardson, Katherine Rasmussen"
maintainer = "[email protected]"
name = "cloud-microphysics-trainer"
license = "(Please see inference-engine/LICENSE.txt.)"
author = "(Please see inference-engine/fpm.toml.)"
maintainer = "(Please see inference-engine/fpm.toml.)"

[dependencies]
assert = {git = "https://github.com/sourceryinstitute/assert", tag = "1.7.0"}
julienne = {git = "https://github.com/sourceryinstitute/julienne", tag = "1.0.0"}
julienne = {git = "https://github.com/berkeleylab/julienne", tag = "1.1.1"}
inference-engine = {path = "../"}
netcdf-interfaces = {git = "https://github.com/LKedward/netcdf-interfaces.git", rev = "d2bbb71ac52b4e346b62572b1ca1620134481096"}
10 changes: 5 additions & 5 deletions cloud-microphysics/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ if [ $CI = true ]; then
echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH"
echo "---------------"
else
PKG_CONFIG_PATH=`realpath "$PREFIX"/lib/pkgconfig`
fi

if [ ! -d $PKG_CONFIG_PATH ]; then
mkdir -p $PKG_CONFIG_PATH
PKG_CONFIG_PATH="$PREFIX/lib/pkgconfig"
if [ ! -d "$PKG_CONFIG_PATH" ]; then
mkdir -p "$PKG_CONFIG_PATH"
fi
PKG_CONFIG_PATH=`realpath "$PKG_CONFIG_PATH"`
fi

INFERENCE_ENGINE_PC="$PKG_CONFIG_PATH/inference-engine.pc"
Expand Down

0 comments on commit 3443f8d

Please sign in to comment.