Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Switch Python bindings to pybind11. #57

Merged
merged 6 commits into from
Jul 1, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add forgotten unit test variable change.
  • Loading branch information
matz-e committed Jun 28, 2019
commit 0e521988a3b37b5bfaf110c4eca62f7895396418
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def build_extension(self, ext):
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=" + extdir,
"-DBUILD_PYTHON_BINDINGS:BOOL=ON",
# Unit tests somehow pull in MPI
"-DMVDTOOL_UNIT_TESTS:BOOL=OFF",
"-DBUILD_UNIT_TESTS:BOOL=OFF",
"-DPYTHON_EXECUTABLE=" + sys.executable,
]

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if(NOT MVDTOOL_UNIT_TESTS)
if(NOT BUILD_UNIT_TESTS)
return()
endif()

Expand Down