Skip to content

Commit 220e0ae

Browse files
committed
removing hardcoded paths from meson build
1 parent a33ea7f commit 220e0ae

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

quaddtype2/meson.build

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
project('quaddtype2', 'c', 'cpp')
1+
project('quaddtype2', 'c', 'cpp', default_options : ['cpp_std=c++17'])
22

33
py_mod = import('python')
44
py = py_mod.find_installation()
55

66
c = meson.get_compiler('c')
77

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'])
8+
sleef_dep = c.find_library('sleef')
9+
sleefquad_dep = c.find_library('sleefquad')
1010

1111
incdir_numpy = run_command(py,
1212
[
@@ -19,7 +19,6 @@ incdir_numpy = run_command(py,
1919
includes = include_directories(
2020
[
2121
incdir_numpy,
22-
'/usr/local/include',
2322
'quaddtype/src',
2423
]
2524
)

0 commit comments

Comments
 (0)