Commit 0ace259d authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Meshing: Mage: Fix libbief extention under windows system.

Showing with 3 additions and 1 deletion
+3 -1
...@@ -53,10 +53,12 @@ class MeshingWithMage(AMeshingTool): ...@@ -53,10 +53,12 @@ class MeshingWithMage(AMeshingTool):
self._init_c_output_bief() self._init_c_output_bief()
def _lib_path(self): def _lib_path(self):
ext = "so" if os.name == "posix" else "dll"
return os.path.abspath( return os.path.abspath(
os.path.join( os.path.join(
os.path.dirname(__file__), os.path.dirname(__file__),
"..", "..", "..", "mage", "libbief.so" "..", "..", "..", "mage", f"libbief.{ext}"
) )
) )
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment