From: Yoann Audouin Date: Wed, 31 Aug 2022 14:29:01 +0000 (+0200) Subject: Generic path for executable X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=cd7fb059591ebd565cf148eb2cba76cf7782dd92;p=plugins%2Fnetgenplugin.git Generic path for executable --- diff --git a/src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx b/src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx index 34c0374..96d6a43 100644 --- a/src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx +++ b/src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx @@ -326,10 +326,14 @@ int NETGENPlugin_NETGEN_3D::RemoteCompute(SMESH_Mesh& aMesh, aMesh.Unlock(); // Calling run_mesher + // TODO: check if we need to handle the .exe for windows std::string cmd; - // TODO: Add run_meher to bin - std::string run_mesher_exe = "/home/B61570/work_in_progress/ssmesh/run_mesher/build/src/run_mesher"; - cmd = run_mesher_exe + + fs::path run_mesher_exe = + fs::path(std::getenv("NETGENPLUGIN_ROOT_DIR"))/ + fs::path("bin")/ + fs::path("salome")/ + fs::path("run_mesher"); + cmd = run_mesher_exe.string() + " NETGEN3D " + mesh_file.string() + " " + shape_file.string() + " " + param_file.string() + " "