Skip to content

Commit

Permalink
with same mixed spelling returned by np.show_config
Browse files Browse the repository at this point in the history
  • Loading branch information
enzbus committed Nov 2, 2023
1 parent a859327 commit e59e496
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ endif
# We find anaconda blas on windows for github CI
if not blas_deps[0].found()
blas_deps = [cc.find_library('blas',
dirs: ['C:\\Miniconda\\envs\\test\\Library\\lib'], # this is the location on github CI
dirs: ['C:/Miniconda/envs/test\\Library\\lib'], # this is the location on github CI
static: get_option('link_blas_statically'))]
cblas_dep = cc.find_library('cblas',
dirs: ['C:\\Miniconda\\envs\\test\\Library\\lib'], # this is the location on github CI
dirs: ['C:/Miniconda/envs/test\\Library\\lib'], # this is the location on github CI
static: get_option('link_blas_statically'), required : false)
if cblas_dep.found()
blas_deps += cblas_dep
Expand Down

0 comments on commit e59e496

Please sign in to comment.