We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a33ea7f commit 220e0aeCopy full SHA for 220e0ae
quaddtype2/meson.build
@@ -1,12 +1,12 @@
1
-project('quaddtype2', 'c', 'cpp')
+project('quaddtype2', 'c', 'cpp', default_options : ['cpp_std=c++17'])
2
3
py_mod = import('python')
4
py = py_mod.find_installation()
5
6
c = meson.get_compiler('c')
7
8
-sleef_dep = c.find_library('sleef', dirs: ['/usr/local/lib']) # sleef installation directories
9
-sleefquad_dep = c.find_library('sleefquad', dirs: ['/usr/local/lib'])
+sleef_dep = c.find_library('sleef')
+sleefquad_dep = c.find_library('sleefquad')
10
11
incdir_numpy = run_command(py,
12
[
@@ -19,7 +19,6 @@ incdir_numpy = run_command(py,
19
includes = include_directories(
20
21
incdir_numpy,
22
- '/usr/local/include',
23
'quaddtype/src',
24
]
25
)
0 commit comments