Skip to content

Commit 6f35472

Browse files
Prerak SinghPrerak Singh
authored andcommitted
bug fix
1 parent 2bcc3fd commit 6f35472

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pydatastructs/utils/meson.build

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ python = import('python').find_installation(pure: false)
33
python.install_sources(
44
[
55
'__init__.py',
6+
'_extensions.py',
67
'misc_util.py',
78
'raises_util.py',
89
'testing_util.py'
@@ -16,17 +17,17 @@ python.install_sources(
1617
)
1718

1819
python.extension_module(
19-
'pydatastructs.utils._backend.cpp._nodes',
20+
'_nodes',
2021
'_backend/cpp/nodes.cpp',
2122
install: true,
22-
subdir: 'pydatastructs/utils'
23+
subdir: 'pydatastructs/utils/_backend/cpp'
2324
)
2425

2526
python.extension_module(
26-
'pydatastructs.utils._backend.cpp._graph_utils',
27+
'_graph_utils',
2728
'_backend/cpp/graph_utils.cpp',
2829
install: true,
29-
subdir: 'pydatastructs/utils'
30+
subdir: 'pydatastructs/utils/_backend/cpp'
3031
)
3132

32-
subdir('tests')
33+
subdir('tests')

0 commit comments

Comments
 (0)