diff --git a/Applications/Utils/MeshEdit/CMakeLists.txt b/Applications/Utils/MeshEdit/CMakeLists.txt index bfb8fc831c8885f38b4257f318cfe77dadeecfa6..4593518cc698f9d1fc1ccdd51000b2e8ae824c52 100644 --- a/Applications/Utils/MeshEdit/CMakeLists.txt +++ b/Applications/Utils/MeshEdit/CMakeLists.txt @@ -34,7 +34,6 @@ if(QT4_FOUND) FileIO InSituLib ${CATALYST_LIBRARIES} - ${QT_LIBRARIES} ) ADD_CATALYST_DEPENDENCY(MapGeometryToMeshSurface) diff --git a/Applications/Utils/MeshEdit/MapGeometryToMeshSurface.cpp b/Applications/Utils/MeshEdit/MapGeometryToMeshSurface.cpp index f4237b4e857552b4e5ed64c6e500f3cbeec5eb1b..b1a14b92cb8cd53aa8df72686fb8de5f44c391f2 100644 --- a/Applications/Utils/MeshEdit/MapGeometryToMeshSurface.cpp +++ b/Applications/Utils/MeshEdit/MapGeometryToMeshSurface.cpp @@ -25,7 +25,6 @@ // FileIO #include "FileIO/readMeshFromFile.h" #include "FileIO/XmlIO/Boost/BoostXmlGmlInterface.h" -#include "FileIO/XmlIO/Qt/XmlGmlInterface.h" // GeoLib #include "GeoLib/GEOObjects.h" @@ -97,7 +96,7 @@ int main (int argc, char* argv[]) } { - FileIO::XmlGmlInterface xml_io(geometries); + FileIO::BoostXmlGmlInterface xml_io(geometries); xml_io.setNameForExport(new_geo_name); xml_io.writeToFile(output_geometry_fname.getValue()); }