We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac6e9fc commit 2a9fb50Copy full SHA for 2a9fb50
1 file changed
meson.build
@@ -18,17 +18,11 @@ c_args = ['-DNDEBUG']
18
thread_dep = dependency('threads')
19
20
cc = meson.get_compiler('c')
21
-mkl_dep = dependency('MKL', method: 'cmake',
22
- modules: ['MKL::MKL'],
23
- cmake_args: [
24
- '-DMKL_ARCH=intel64',
25
- '-DMKL_LINK=sdl',
26
- ],
27
- required: true
28
-)
+mkl_rt = cc.find_library('mkl_rt', required: true)
+mkl_dep = declare_dependency(dependencies: [mkl_rt])
29
30
rpath = ''
31
-if host_machine.system() == 'linux'
+if host_machine.system() != 'windows'
32
rpath = '$ORIGIN/../..:$ORIGIN/../../..'
33
endif
34
0 commit comments