Skip to content

Commit

Permalink
ci3
Browse files Browse the repository at this point in the history
  • Loading branch information
mjreno authored and mjreno committed Sep 14, 2023
1 parent e00daee commit a1c297a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,17 @@ jobs:
#echo "find incdir:"
#find .. | grep -i netcdf4_nf_interfaces.mod
#find $GITHUB_WORKSPACE | grep -i netcdf4_nf_interfaces.mod
echo "find mingw64:"
#echo "find mingw64:"
#find .. -type d | grep -i mingw64
#find .. -type d | grep -i include
#find $GITHUB_WORKSPACE -type d | grep -i mingw64
#find $GITHUB_WORKSPACE -type d | grep -i include
find /d -type d | grep -i mingw64
find /d -type d | grep -i include
#find /d -type d | grep -i mingw64
#find /d -type d | grep -i include
echo "ls cmake/netCDF:"
ls -l /d/a/_temp/msys64/mingw64/lib/cmake/netCDF
echo "find netcdf:"
find /d/a/_temp/msys64/mingw64 | grep -i netcdf
#echo "ls -l ../netcdf/lib/libnetcdff.a:"
#ls -l ../netcdf/lib/libnetcdff.a
#echo "GHWRK"
Expand Down
5 changes: 4 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,10 @@ else
message('nc_dir:', nc_dir)
#netcdf = fc.find_library('libnetcdff', dirs: [ nc_dir ], required : true, static : true)
netcdf = fc.find_library('netcdff', dirs: [ nc_dir / '.libs' ], required : true, static : true)
nc_incdir = include_directories([ nc_dir ])
#/d/a/_temp/msys64/mingw64/include
#nc_dir: D:/a/modflow6/modflow6/modflow6/../ncf/netcdf-fortran-4.6.0/fortran
ncc_incdir = meson.project_source_root() / '..' / '..' / '..' / '_temp' / 'msys64' / 'mingw64' / 'include'
nc_incdir = include_directories([ nc_dir, ncc_incdir ])
endif
#netcdf = dependency('netcdf', language : 'fortran', required : false)
if netcdf.found()
Expand Down

0 comments on commit a1c297a

Please sign in to comment.