Skip to content

Commit ee430b9

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

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pydatastructs/graphs/meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ python.install_sources(
2020
py_include = include_directories('../utils/_backend/cpp')
2121

2222
python.extension_module(
23-
'pydatastructs.graphs._backend.cpp._graph',
23+
'_graph',
2424
'_backend/cpp/graph.cpp',
2525
include_directories: py_include,
2626
install: true,
27-
subdir: 'pydatastructs/graphs'
27+
subdir: 'pydatastructs/graphs/_backend/cpp'
2828
)
2929

3030
python.extension_module(
31-
'pydatastructs.graphs._backend.cpp._algorithms',
31+
'_algorithms',
3232
'_backend/cpp/algorithms.cpp',
3333
include_directories: py_include,
3434
install: true,
35-
subdir: 'pydatastructs/graphs'
35+
subdir: 'pydatastructs/graphs/_backend/cpp'
3636
)
3737

3838
subdir('tests')

0 commit comments

Comments
 (0)