Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 30a3d926 authored by CERUTTI Guillaume's avatar CERUTTI Guillaume
Browse files

wrapper cmakelists + test

parent 69134f97
No related branches found
No related tags found
1 merge request!7basic tetrahedral mesh class
Pipeline #948398 failed
...@@ -22,6 +22,7 @@ find_package(CGAL REQUIRED COMPONENTS ImageIO) ...@@ -22,6 +22,7 @@ find_package(CGAL REQUIRED COMPONENTS ImageIO)
include(GNUInstallDirs) include(GNUInstallDirs)
add_subdirectory(cpp) add_subdirectory(cpp)
add_subdirectory(wrp)
# Add a library using FindPython's tooling (pybind11 also provides a helper like # Add a library using FindPython's tooling (pybind11 also provides a helper like
# this) # this)
...@@ -36,9 +37,3 @@ target_link_libraries(_cgal PRIVATE CGAL::CGAL) ...@@ -36,9 +37,3 @@ target_link_libraries(_cgal PRIVATE CGAL::CGAL)
# The install directory is the output (wheel) directory # The install directory is the output (wheel) directory
install(TARGETS _core DESTINATION pybind_example) install(TARGETS _core DESTINATION pybind_example)
install(TARGETS _cgal DESTINATION pybind_example) install(TARGETS _cgal DESTINATION pybind_example)
pybind11_add_module(_wrp MODULE wrp/LabelledTetrahedralMeshWrapper.cpp)
target_include_directories(_wrp PRIVATE ${CMAKE_SOURCE_DIR}/cpp/)
target_link_libraries(_wrp PUBLIC _cpp)
install(TARGETS _wrp DESTINATION pybind_example)
\ No newline at end of file
...@@ -17,7 +17,7 @@ class TestCgalMesh(unittest.TestCase): ...@@ -17,7 +17,7 @@ class TestCgalMesh(unittest.TestCase):
if os.path.exists(self.mesh_filename): if os.path.exists(self.mesh_filename):
os.remove(self.mesh_filename) os.remove(self.mesh_filename)
def test_tissue_image_surface_topomesh(self): def test_mesh_3d_image(self):
res = mesh_3d_image(self.image_filename, self.mesh_filename) res = mesh_3d_image(self.image_filename, self.mesh_filename)
assert res == 1 # should not work for now, test that it fails assert res == 1 # should not work for now, test that it fails
assert not os.path.exists(self.mesh_filename) assert not os.path.exists(self.mesh_filename)
import unittest
from pybind_example.labelled_tetrahedral_mesh import LabelledTetrahedralMesh
class TestTetrahedralMesh(unittest.TestCase):
def test_tetrahedral_mesh_init(self):
mesh = LabelledTetrahedralMesh()
assert mesh is not None
project(_wrp)
pybind11_add_module(_wrp MODULE LabelledTetrahedralMeshWrapper.cpp)
target_include_directories(_wrp PRIVATE ${CMAKE_SOURCE_DIR}/cpp/)
target_link_libraries(_wrp PUBLIC _cpp)
install(TARGETS _wrp DESTINATION pybind_example)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment