From f45a87c737819ca13a2eee496daddeff777aff70 Mon Sep 17 00:00:00 2001 From: Oliver Gloth Date: Fri, 17 Mar 2023 10:38:59 +0100 Subject: [PATCH] compiles on openSUSE 15.4 part 2 --- src/CMakeLists.txt | 62 +- src/compile_commands.json | 1637 ++++++++++++++++++++ src/libengrid/CMakeLists.txt | 13 +- src/libengrid/blenderwriter.cpp | 14 +- src/libengrid/boundarylayeroperation.cpp | 47 +- src/libengrid/checkforoverlap.cpp | 18 +- src/libengrid/correctsurfaceorientation.cpp | 34 +- src/libengrid/createboundarylayershell.cpp | 3 +- src/libengrid/createcadtesselation.cpp | 2 +- src/libengrid/createhexcore.cpp | 3 +- src/libengrid/createhexibmesh.cpp | 10 +- src/libengrid/deletestraynodes.cpp | 15 +- src/libengrid/deletetetras.cpp | 9 +- src/libengrid/dolfynwriter.cpp | 8 +- src/libengrid/egvtkinteractorstyle.cpp | 6 +- src/libengrid/egvtkobject.cpp | 89 +- src/libengrid/eliminatesmallbranches.cpp | 34 +- src/libengrid/engrid.h | 26 +- src/libengrid/facefinder.cpp | 15 +- src/libengrid/filetemplate.h | 7 + src/libengrid/fillplane.cpp | 13 +- src/libengrid/fixcadgeometry.cpp | 40 +- src/libengrid/fixstl.cpp | 4 +- src/libengrid/geometrytools.cpp | 36 +- src/libengrid/gmshwriter.cpp | 49 +- src/libengrid/gridsmoother.cpp | 58 +- src/libengrid/guicreateboundarylayer.cpp | 5 +- src/libengrid/guideletebadaspecttris.cpp | 10 +- src/libengrid/guidivideboundarylayer.cpp | 15 +- src/libengrid/guimainwindow.cpp | 82 +- src/libengrid/guimainwindow.h | 2 + src/libengrid/guimainwindow.ui | 39 +- src/libengrid/guimirrormesh.cpp | 68 +- src/libengrid/guisettingstab.cpp | 1 + src/libengrid/guisettingstab.h | 3 + src/libengrid/guisettingsviewer.cpp | 4 + src/libengrid/guisettingsviewer.h | 1 + src/libengrid/insertpoints.cpp | 17 +- src/libengrid/meshpartition.cpp | 41 +- src/libengrid/meshpartition.h | 8 +- src/libengrid/meshqualityfaceorientation.cpp | 4 +- src/libengrid/multipagewidget.cpp | 3 + src/libengrid/neutralwriter.cpp | 6 +- src/libengrid/operation.cpp | 12 +- src/libengrid/polymesh.cpp | 13 +- src/libengrid/reducedpolydatareader.cpp | 6 +- src/libengrid/removepoints.cpp | 50 +- src/libengrid/resources/solvers/solvers.txt | 7 - src/libengrid/seedsimpleprismaticlayer.cpp | 35 +- src/libengrid/showinfo.cpp | 9 +- src/libengrid/simplefoamwriter.cpp | 6 +- src/libengrid/stitchholes.cpp | 3 +- src/libengrid/stlreader.cpp | 16 +- src/libengrid/su2writer.cpp | 11 +- src/libengrid/surfaceoperation.cpp | 23 +- src/libengrid/tetgenoperation.cpp | 10 +- src/libengrid/triangle.cpp | 5 +- src/libengrid/triangularcadinterface.h | 5 +- src/libengrid/updatedesiredmeshdensity.cpp | 31 +- src/libengrid/utilities.cpp | 43 +- src/libengrid/vertexdelegate.cpp | 1 + src/libengrid/vtkEgBoundaryCodesFilter.cxx | 9 +- src/libengrid/vtkEgEliminateShortEdges.cxx | 39 +- src/libengrid/vtkEgExtractVolumeCells.cxx | 37 +- src/libengrid/vtkEgGridFilter.cxx | 7 +- src/libengrid/vtkEgNormalExtrusion.cxx | 81 +- .../vtkEgPolyDataToUnstructuredGridFilter.cxx | 17 +- src/main.cpp | 30 +- src/tetgen/CMakeLists.txt | 2 +- 69 files changed, 2335 insertions(+), 734 deletions(-) create mode 100644 src/compile_commands.json diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4137709d..0c698d66 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -20,14 +20,17 @@ # ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.0.2) # limit configuration types (must be done before project() statement) set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "limited config" FORCE) project(ENGRID) -set(CMAKE_VERBOSE_MAKEFILE off) +set(CMAKE_VERBOSE_MAKEFILE no) + +# export build setup for development environment +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) set(ENGRID_MAJOR_VERSION 2) set(ENGRID_MINOR_VERSION 0) @@ -55,7 +58,28 @@ if(NOT CMAKE_BUILD_TYPE) set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release") endif() -FIND_PACKAGE(VTK REQUIRED) +if(WIN32) + FIND_PACKAGE(VTK REQUIRED NO_MODULE PATHS $ENV{HOME}/local $ENV{HOME}/local_new/lib/VTK HINTS ENV LD_LIBRARY_PATH) +else(WIN32) + FIND_PACKAGE(VTK COMPONENTS + RenderingCore + ChartsCore + CommonExecutionModel + CommonTransforms + CommonColor + FiltersCore + FiltersGeneral + FiltersGeometry + FiltersSources + IOCore + IOGeometry + IOLegacy + IOPLY + IOXML + vtkGUISupportQt + REQUIRED NO_MODULE) +endif(WIN32) + if("${VTK_VERSION}" VERSION_LESS 6.0) message("The VTK version installed on the current system is too old. EnGrid requires VTK 6.0 or higher.") endif() @@ -67,24 +91,20 @@ if(NOT INITIAL_CONFIG) set(CMAKE_INSTALL_PREFIX $ENV{HOME}/local CACHE STRING "Install path prefix, prepended onto install directories." FORCE) endif() -include(${VTK_USE_FILE}) -include_directories(${VTK_INCLUDE_DIRS}) +# include(${VTK_USE_FILE}) +# include_directories(${VTK_INCLUDE_DIRS}) FIND_PACKAGE(CGAL REQUIRED) include(${CGAL_USE_FILE}) #include_directories(${VTK_INCLUDE_DIRS}) -# Qt4 -find_package(Qt4 COMPONENTS QtCore REQUIRED) -find_package(Qt4 COMPONENTS QtGui REQUIRED) -find_package(Qt4 COMPONENTS QtXml REQUIRED) -find_package(Qt4 REQUIRED) - -#include(${QT_USE_FILE}) -include_directories(${QT_QTCORE_INCLUDE_DIR}) -include_directories(${QT_QTGUI_INCLUDE_DIR}) -include_directories(${QT_QTXML_INCLUDE_DIR}) -include_directories(${QT_INCLUDE_DIR}) +# Qt5 +find_package(Qt5 COMPONENTS Core Gui Widgets Network Xml REQUIRED) +INCLUDE_DIRECTORIES(${Qt5Core_INCLUDE_DIRS}) +INCLUDE_DIRECTORIES(${Qt5Gui_INCLUDE_DIRS}) +INCLUDE_DIRECTORIES(${Qt5Widgets_INCLUDE_DIRS}) +INCLUDE_DIRECTORIES(${Qt5Network_INCLUDE_DIRS}) +INCLUDE_DIRECTORIES(${Qt5Xml_INCLUDE_DIRS}) # set include directory, add src directories include_directories(${CMAKE_CURRENT_SOURCE_DIR}/tetgen) @@ -114,11 +134,12 @@ add_executable(engrid main.cpp) target_link_libraries(engrid libengrid) target_link_libraries(engrid tet) -target_link_libraries(engrid ${QT_LIBRARIES}) +target_link_libraries(engrid Qt5::Core) +target_link_libraries(engrid Qt5::Gui) +target_link_libraries(engrid Qt5::Widgets) +target_link_libraries(engrid Qt5::Network) +target_link_libraries(engrid Qt5::Xml) target_link_libraries(engrid ${VTK_LIBRARIES}) -target_link_libraries(engrid Qt4::QtCore) -target_link_libraries(engrid Qt4::QtGui) -target_link_libraries(engrid Qt4::QtXml) install(TARGETS engrid DESTINATION bin) @@ -130,4 +151,3 @@ install( add_dependencies(engrid tetgen libengrid) - diff --git a/src/compile_commands.json b/src/compile_commands.json new file mode 100644 index 00000000..87232fae --- /dev/null +++ b/src/compile_commands.json @@ -0,0 +1,1637 @@ +[ +{ + "directory": "/data1/home/ogloth/Development/engrid/build", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -Dkiss_fft_scalar=double -I/data1/home/ogloth/Development/engrid/build -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/qt5/QtNetwork -isystem /usr/include/qt5/QtXml -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -g -frounding-math -fPIC -o CMakeFiles/engrid.dir/main.cpp.o -c /data1/home/ogloth/Development/engrid/src/main.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/main.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/tetgen", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DNDEBUG -DQT_DEBUG -DTETLIBRARY -DUSE_CGAL_PREDICATES -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5 -I/usr/include/qt5/QtCore -I/usr/lib64/qt5/mkspecs/linux-g++ -I/usr/include/qt5/QtGui -I/usr/include/qt5/QtWidgets -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -I/usr/include/boost -g -frounding-math -o CMakeFiles/tet.dir/tetgen.cxx.o -c /data1/home/ogloth/Development/engrid/src/tetgen/tetgen.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/tetgen/tetgen.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/tetgen", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DNDEBUG -DQT_DEBUG -DTETLIBRARY -DUSE_CGAL_PREDICATES -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5 -I/usr/include/qt5/QtCore -I/usr/lib64/qt5/mkspecs/linux-g++ -I/usr/include/qt5/QtGui -I/usr/include/qt5/QtWidgets -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -I/usr/include/boost -g -frounding-math -o CMakeFiles/tet.dir/predicates.cxx.o -c /data1/home/ogloth/Development/engrid/src/tetgen/predicates.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/tetgen/predicates.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/tetgen", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DNDEBUG -DQT_DEBUG -DUSE_CGAL_PREDICATES -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5 -I/usr/include/qt5/QtCore -I/usr/lib64/qt5/mkspecs/linux-g++ -I/usr/include/qt5/QtGui -I/usr/include/qt5/QtWidgets -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -I/usr/include/boost -g -frounding-math -o CMakeFiles/tetgen.dir/tetgen.cxx.o -c /data1/home/ogloth/Development/engrid/src/tetgen/tetgen.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/tetgen/tetgen.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/tetgen", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DNDEBUG -DQT_DEBUG -DUSE_CGAL_PREDICATES -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5 -I/usr/include/qt5/QtCore -I/usr/lib64/qt5/mkspecs/linux-g++ -I/usr/include/qt5/QtGui -I/usr/include/qt5/QtWidgets -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -I/usr/include/boost -g -frounding-math -o CMakeFiles/tetgen.dir/predicates.cxx.o -c /data1/home/ogloth/Development/engrid/src/tetgen/predicates.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/tetgen/predicates.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/blenderreader.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/blenderreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/blenderreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/blenderwriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/blenderwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/blenderwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/boundarycondition.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/boundarycondition.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/boundarycondition.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/boundarylayeroperation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/boundarylayeroperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/boundarylayeroperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/boxselect.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/boxselect.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/boxselect.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/cadinterface.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/cadinterface.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/cadinterface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/celllayeriterator.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/celllayeriterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/celllayeriterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/cellneighbouriterator.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/cellneighbouriterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/cellneighbouriterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/cgaltricadinterface.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/cgaltricadinterface.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/cgaltricadinterface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/cgnswriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/cgnswriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/cgnswriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/checkforoverlap.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/checkforoverlap.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/checkforoverlap.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/checksurfaceintegrity.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/checksurfaceintegrity.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/checksurfaceintegrity.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/correctsurfaceorientation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/correctsurfaceorientation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/correctsurfaceorientation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/createboundarylayershell.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/createboundarylayershell.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/createboundarylayershell.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/createcadtesselation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/createcadtesselation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/createcadtesselation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/createhexcore.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/createhexcore.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/createhexcore.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/createvolumemesh.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/createvolumemesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/createvolumemesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/curve.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/curve.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/curve.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/deletecells.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/deletecells.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/deletecells.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/deletepickedcell.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/deletepickedcell.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/deletepickedcell.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/deletepickedpoint.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/deletepickedpoint.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/deletepickedpoint.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/deletestraynodes.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/deletestraynodes.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/deletestraynodes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/deletetetras.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/deletetetras.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/deletetetras.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/deletevolumegrid.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/deletevolumegrid.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/deletevolumegrid.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/dialoglineedit.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/dialoglineedit.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/dialoglineedit.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/dolfynwriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/dolfynwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/dolfynwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/edgelengthsourcemanager.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/edgelengthsourcemanager.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/edgelengthsourcemanager.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/egvtkinteractorstyle.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/egvtkinteractorstyle.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/egvtkinteractorstyle.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/egvtkobject.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/egvtkobject.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/egvtkobject.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/elements.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/elements.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/elements.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/eliminatesmallbranches.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/eliminatesmallbranches.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/eliminatesmallbranches.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/error.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/error.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/error.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/facefinder.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/facefinder.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/facefinder.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/filetemplate.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/filetemplate.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/filetemplate.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/fixcadgeometry.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/fixcadgeometry.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/fixcadgeometry.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/fixstl.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/fixstl.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/fixstl.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/solverobject.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/solverobject.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/solverobject.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/foamreader.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/foamreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/foamreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/foamwriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/foamwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/foamwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/geometrysmoother.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/geometrysmoother.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/geometrysmoother.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/geometrytools.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/geometrytools.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/geometrytools.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/gmshiooperation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/gmshiooperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/gmshiooperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/gmshreader.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/gmshreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/gmshreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/gmshwriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/gmshwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/gmshwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/gridsmoother.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/gridsmoother.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/gridsmoother.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guicreateboundarylayer.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guicreateboundarylayer.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guicreateboundarylayer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guicreatehexcore.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guicreatehexcore.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guicreatehexcore.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guicreatesurfacemesh.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guicreatesurfacemesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guicreatesurfacemesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guicreatevolumemesh.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guicreatevolumemesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guicreatevolumemesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guideletebadaspecttris.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guideletebadaspecttris.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guideletebadaspecttris.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guidivideboundarylayer.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guidivideboundarylayer.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guidivideboundarylayer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guiedgelengthsourcebox.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guiedgelengthsourcebox.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guiedgelengthsourcebox.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guiedgelengthsourcecone.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guiedgelengthsourcecone.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guiedgelengthsourcecone.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guiedgelengthsourcepipe.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guiedgelengthsourcepipe.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guiedgelengthsourcepipe.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guiedgelengthsourcesphere.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guiedgelengthsourcesphere.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guiedgelengthsourcesphere.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guieditboundaryconditions.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guieditboundaryconditions.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guieditboundaryconditions.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guiimproveaspectratio.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guiimproveaspectratio.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guiimproveaspectratio.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guimainwindow.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guimainwindow.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guimainwindow.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guimergevolumes.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guimergevolumes.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guimergevolumes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guimirrormesh.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guimirrormesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guimirrormesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guinormalextrusion.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guinormalextrusion.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guinormalextrusion.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guipick.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guipick.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guipick.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guiselectboundarycodes.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guiselectboundarycodes.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guiselectboundarycodes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guisetboundarycode.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guisetboundarycode.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guisetboundarycode.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guisettingstab.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guisettingstab.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guisettingstab.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guisettingsviewer.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guisettingsviewer.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guisettingsviewer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guisurfacemesher.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guisurfacemesher.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guisurfacemesher.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guitransform.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guitransform.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guitransform.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guivolumedelegate.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guivolumedelegate.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guivolumedelegate.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guiypluscalculator.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guiypluscalculator.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guiypluscalculator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/insertpoints.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/insertpoints.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/insertpoints.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/iooperation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/iooperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/iooperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/iterator.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/iterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/iterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/laplacesmoother.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/laplacesmoother.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/laplacesmoother.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/layeriterator.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/layeriterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/layeriterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/mergenodes.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/mergenodes.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/mergenodes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/meshpartition.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/meshpartition.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/meshpartition.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/meshquality.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/meshquality.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/meshquality.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/meshqualityfaceorientation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/meshqualityfaceorientation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/meshqualityfaceorientation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/multipagewidget.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/multipagewidget.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/multipagewidget.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/multipagewidgetpage.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/multipagewidgetpage.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/multipagewidgetpage.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/multisolidasciistlreader.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/multisolidasciistlreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/multisolidasciistlreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/neutralwriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/neutralwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/neutralwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/nodelayeriterator.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/nodelayeriterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/nodelayeriterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/octree.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/octree.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/octree.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/openfoamcase.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/openfoamcase.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/openfoamcase.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/solvertools.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/solvertools.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/solvertools.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/operation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/operation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/operation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/optimisation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/optimisation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/optimisation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/optimisenormalvector.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/optimisenormalvector.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/optimisenormalvector.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/padsurface.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/padsurface.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/padsurface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/physicalboundarycondition.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/physicalboundarycondition.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/physicalboundarycondition.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/plywriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/plywriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/plywriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/pointfinder.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/pointfinder.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/pointfinder.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/polydatareader.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/polydatareader.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/polydatareader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/polyline.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/polyline.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/polyline.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/polymesh.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/polymesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/polymesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/polymolecule.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/polymolecule.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/polymolecule.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/reducedpolydatareader.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/reducedpolydatareader.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/reducedpolydatareader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/reducesurfacetriangulation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/reducesurfacetriangulation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/reducesurfacetriangulation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/removepoints.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/removepoints.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/removepoints.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/ruleedgelengthsource.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/ruleedgelengthsource.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/ruleedgelengthsource.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/seedsimpleprismaticlayer.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/seedsimpleprismaticlayer.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/seedsimpleprismaticlayer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/seligairfoilreader.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/seligairfoilreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/seligairfoilreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/setboundarycode.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/setboundarycode.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/setboundarycode.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/showinfo.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/showinfo.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/showinfo.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/simplefoamwriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/simplefoamwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/simplefoamwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/smoothandswapsurface.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/smoothandswapsurface.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/smoothandswapsurface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/smoothingutilities.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/smoothingutilities.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/smoothingutilities.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/snaptofeatures.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/snaptofeatures.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/snaptofeatures.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/stitchholes.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/stitchholes.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/stitchholes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/stlreader.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/stlreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/stlreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/stlwriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/stlwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/stlwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/su2writer.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/su2writer.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/su2writer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/surfacealgorithm.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/surfacealgorithm.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/surfacealgorithm.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/surfacemesher.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/surfacemesher.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/surfacemesher.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/surfacemeshsmoother.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/surfacemeshsmoother.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/surfacemeshsmoother.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/surfacenodemovementcheck.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/surfacenodemovementcheck.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/surfacenodemovementcheck.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/surfaceoperation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/surfaceoperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/surfaceoperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/swaptriangles.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/swaptriangles.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/swaptriangles.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/text3d.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/text3d.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/text3d.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/tetgenoperation.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/tetgenoperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/tetgenoperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/timer.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/timer.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/timer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/triangle.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/triangle.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/triangle.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/triangularcadinterface.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/triangularcadinterface.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/triangularcadinterface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/tricoord.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/tricoord.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/tricoord.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/updatedesiredmeshdensity.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/updatedesiredmeshdensity.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/updatedesiredmeshdensity.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/updatesurfproj.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/updatesurfproj.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/updatesurfproj.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/utilities.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/utilities.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/utilities.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/vertexdelegate.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/vertexdelegate.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/vertexdelegate.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/vertexmeshdensity.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/vertexmeshdensity.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/vertexmeshdensity.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/volumedefinition.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/volumedefinition.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/volumedefinition.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/vtkEgBoundaryCodesFilter.cxx.o -c /data1/home/ogloth/Development/engrid/src/libengrid/vtkEgBoundaryCodesFilter.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/vtkEgBoundaryCodesFilter.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/vtkEgEliminateShortEdges.cxx.o -c /data1/home/ogloth/Development/engrid/src/libengrid/vtkEgEliminateShortEdges.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/vtkEgEliminateShortEdges.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/vtkEgExtractVolumeCells.cxx.o -c /data1/home/ogloth/Development/engrid/src/libengrid/vtkEgExtractVolumeCells.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/vtkEgExtractVolumeCells.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/vtkEgGridFilter.cxx.o -c /data1/home/ogloth/Development/engrid/src/libengrid/vtkEgGridFilter.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/vtkEgGridFilter.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/vtkEgNormalExtrusion.cxx.o -c /data1/home/ogloth/Development/engrid/src/libengrid/vtkEgNormalExtrusion.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/vtkEgNormalExtrusion.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/vtkEgPolyDataToUnstructuredGridFilter.cxx.o -c /data1/home/ogloth/Development/engrid/src/libengrid/vtkEgPolyDataToUnstructuredGridFilter.cxx", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/vtkEgPolyDataToUnstructuredGridFilter.cxx" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/vtkreader.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/vtkreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/vtkreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/xmlhandler.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/xmlhandler.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/xmlhandler.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guifillplane.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guifillplane.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guifillplane.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/fillplane.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/fillplane.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/fillplane.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/drnumwriter.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/drnumwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/drnumwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/computemeshdensity.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/computemeshdensity.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/computemeshdensity.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/converttopolymesh.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/converttopolymesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/converttopolymesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guicreatehexshell.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guicreatehexshell.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guicreatehexshell.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guiconverttopolymesh.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guiconverttopolymesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guiconverttopolymesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/createhexibmesh.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/createhexibmesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/createhexibmesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/guicreatehexibmesh.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/guicreatehexibmesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/guicreatehexibmesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/restricttoavailablevolumecells.cpp.o -c /data1/home/ogloth/Development/engrid/src/libengrid/restricttoavailablevolumecells.cpp", + "file": "/data1/home/ogloth/Development/engrid/src/libengrid/restricttoavailablevolumecells.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_blenderreader.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_blenderreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_blenderreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_blenderwriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_blenderwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_blenderwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_boundarycondition.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_boundarycondition.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_boundarycondition.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_boundarylayeroperation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_boundarylayeroperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_boundarylayeroperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_boxselect.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_boxselect.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_boxselect.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_cadinterface.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_cadinterface.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_cadinterface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_celllayeriterator.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_celllayeriterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_celllayeriterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_cellneighbouriterator.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_cellneighbouriterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_cellneighbouriterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_cgaltricadinterface.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_cgaltricadinterface.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_cgaltricadinterface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_cgnswriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_cgnswriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_cgnswriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_checkerboardgraphiterator.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_checkerboardgraphiterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_checkerboardgraphiterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_checkforoverlap.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_checkforoverlap.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_checkforoverlap.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_checksurfaceintegrity.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_checksurfaceintegrity.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_checksurfaceintegrity.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_containertricks.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_containertricks.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_containertricks.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_correctsurfaceorientation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_correctsurfaceorientation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_correctsurfaceorientation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_createboundarylayershell.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_createboundarylayershell.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_createboundarylayershell.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_createcadtesselation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_createcadtesselation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_createcadtesselation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_createhexcore.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_createhexcore.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_createhexcore.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_createvolumemesh.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_createvolumemesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_createvolumemesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_curve.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_curve.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_curve.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_deletecells.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_deletecells.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_deletecells.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_deletepickedcell.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_deletepickedcell.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_deletepickedcell.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_deletepickedpoint.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_deletepickedpoint.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_deletepickedpoint.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_deletestraynodes.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_deletestraynodes.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_deletestraynodes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_deletetetras.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_deletetetras.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_deletetetras.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_deletevolumegrid.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_deletevolumegrid.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_deletevolumegrid.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_dialoglineedit.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_dialoglineedit.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_dialoglineedit.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_dialogoperation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_dialogoperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_dialogoperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_dolfynwriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_dolfynwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_dolfynwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_edgelengthsource.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_edgelengthsource.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_edgelengthsource.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_edgelengthsourcemanager.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_edgelengthsourcemanager.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_edgelengthsourcemanager.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_eghashset.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_eghashset.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_eghashset.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_egvtkinteractorstyle.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_egvtkinteractorstyle.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_egvtkinteractorstyle.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_egvtkobject.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_egvtkobject.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_egvtkobject.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_elements.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_elements.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_elements.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_eliminatesmallbranches.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_eliminatesmallbranches.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_eliminatesmallbranches.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_engrid.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_engrid.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_engrid.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_engrid_version.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_engrid_version.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_engrid_version.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_error.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_error.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_error.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_facefinder.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_facefinder.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_facefinder.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_filetemplate.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_filetemplate.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_filetemplate.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_fixcadgeometry.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_fixcadgeometry.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_fixcadgeometry.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_fixstl.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_fixstl.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_fixstl.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_solverobject.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_solverobject.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_solverobject.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_foamreader.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_foamreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_foamreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_foamwriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_foamwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_foamwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_geometrysmoother.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_geometrysmoother.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_geometrysmoother.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_geometrytools.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_geometrytools.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_geometrytools.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_globalnodegraphinterface.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_globalnodegraphinterface.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_globalnodegraphinterface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_gmshiooperation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_gmshiooperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_gmshiooperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_gmshreader.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_gmshreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_gmshreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_gmshwriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_gmshwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_gmshwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_gridsmoother.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_gridsmoother.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_gridsmoother.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guicreateboundarylayer.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreateboundarylayer.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreateboundarylayer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guicreatehexcore.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatehexcore.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatehexcore.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guicreatesurfacemesh.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatesurfacemesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatesurfacemesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guicreatevolumemesh.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatevolumemesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatevolumemesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guideletebadaspecttris.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guideletebadaspecttris.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guideletebadaspecttris.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guidivideboundarylayer.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guidivideboundarylayer.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guidivideboundarylayer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guiedgelengthsourcebox.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guiedgelengthsourcebox.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guiedgelengthsourcebox.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guiedgelengthsourcecone.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guiedgelengthsourcecone.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guiedgelengthsourcecone.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guiedgelengthsourcepipe.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guiedgelengthsourcepipe.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guiedgelengthsourcepipe.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guiedgelengthsourcesphere.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guiedgelengthsourcesphere.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guiedgelengthsourcesphere.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guieditboundaryconditions.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guieditboundaryconditions.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guieditboundaryconditions.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guiimproveaspectratio.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guiimproveaspectratio.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guiimproveaspectratio.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guimainwindow.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guimainwindow.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guimainwindow.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guimergevolumes.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guimergevolumes.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guimergevolumes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guimirrormesh.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guimirrormesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guimirrormesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guinormalextrusion.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guinormalextrusion.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guinormalextrusion.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guipick.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guipick.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guipick.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guiselectboundarycodes.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guiselectboundarycodes.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guiselectboundarycodes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guisetboundarycode.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guisetboundarycode.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guisetboundarycode.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guisettingstab.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guisettingstab.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guisettingstab.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guisettingsviewer.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guisettingsviewer.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guisettingsviewer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guisurfacemesher.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guisurfacemesher.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guisurfacemesher.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guitransform.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guitransform.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guitransform.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guivolumedelegate.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guivolumedelegate.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guivolumedelegate.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guiypluscalculator.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guiypluscalculator.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guiypluscalculator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_insertpoints.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_insertpoints.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_insertpoints.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_iooperation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_iooperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_iooperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_iterator.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_iterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_iterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_laplacesmoother.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_laplacesmoother.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_laplacesmoother.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_layeriterator.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_layeriterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_layeriterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_localnodegraphinterface.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_localnodegraphinterface.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_localnodegraphinterface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/__/math/moc_linsolve.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_linsolve.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_linsolve.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/__/math/moc_mathvector.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_mathvector.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_mathvector.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/__/math/moc_mathvector_methods.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_mathvector_methods.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_mathvector_methods.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/__/math/moc_mathvector_operators.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_mathvector_operators.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_mathvector_operators.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/__/math/moc_mathvector_structs.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_mathvector_structs.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_mathvector_structs.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/__/math/moc_smallsquarematrix.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_smallsquarematrix.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/__/math/moc_smallsquarematrix.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_mergenodes.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_mergenodes.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_mergenodes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_meshpartition.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_meshpartition.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_meshpartition.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_meshqualityfaceorientation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_meshqualityfaceorientation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_meshqualityfaceorientation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_meshquality.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_meshquality.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_meshquality.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_multipagewidget.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_multipagewidget.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_multipagewidget.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_multipagewidgetpage.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_multipagewidgetpage.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_multipagewidgetpage.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_multisolidasciistlreader.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_multisolidasciistlreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_multisolidasciistlreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_neutralwriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_neutralwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_neutralwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_nodelayeriterator.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_nodelayeriterator.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_nodelayeriterator.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_octree.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_octree.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_octree.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_openfoamcase.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_openfoamcase.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_openfoamcase.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_solvertools.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_solvertools.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_solvertools.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_operation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_operation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_operation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_optimisation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_optimisation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_optimisation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_optimisenormalvector.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_optimisenormalvector.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_optimisenormalvector.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_padsurface.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_padsurface.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_padsurface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_physicalboundarycondition.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_physicalboundarycondition.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_physicalboundarycondition.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_plywriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_plywriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_plywriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_pointfinder.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_pointfinder.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_pointfinder.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_polydatareader.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_polydatareader.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_polydatareader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_polyline.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_polyline.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_polyline.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_polymesh.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_polymesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_polymesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_polymolecule.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_polymolecule.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_polymolecule.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_reducedpolydatareader.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_reducedpolydatareader.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_reducedpolydatareader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_reducesurfacetriangulation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_reducesurfacetriangulation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_reducesurfacetriangulation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_removepoints.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_removepoints.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_removepoints.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_ruleedgelengthsource.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_ruleedgelengthsource.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_ruleedgelengthsource.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_seedsimpleprismaticlayer.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_seedsimpleprismaticlayer.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_seedsimpleprismaticlayer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_seligairfoilreader.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_seligairfoilreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_seligairfoilreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_setboundarycode.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_setboundarycode.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_setboundarycode.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_showinfo.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_showinfo.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_showinfo.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_simplefoamwriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_simplefoamwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_simplefoamwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_smoothandswapsurface.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_smoothandswapsurface.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_smoothandswapsurface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_smoothingutilities.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_smoothingutilities.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_smoothingutilities.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_snaptofeatures.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_snaptofeatures.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_snaptofeatures.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_sortablevector.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_sortablevector.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_sortablevector.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_statistics.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_statistics.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_statistics.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_std_connections.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_std_connections.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_std_connections.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_std_includes.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_std_includes.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_std_includes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_stitchholes.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_stitchholes.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_stitchholes.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_stlreader.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_stlreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_stlreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_stlwriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_stlwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_stlwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_su2writer.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_su2writer.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_su2writer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_surfacealgorithm.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_surfacealgorithm.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_surfacealgorithm.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_surfacemesher.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_surfacemesher.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_surfacemesher.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_surfacemeshsmoother.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_surfacemeshsmoother.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_surfacemeshsmoother.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_surfacenodemovementcheck.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_surfacenodemovementcheck.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_surfacenodemovementcheck.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_surfaceoperation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_surfaceoperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_surfaceoperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_swaptriangles.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_swaptriangles.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_swaptriangles.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_tetgenoperation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_tetgenoperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_tetgenoperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_text3d.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_text3d.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_text3d.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_timer.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_timer.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_timer.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_triangle.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_triangle.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_triangle.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_triangularcadinterface.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_triangularcadinterface.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_triangularcadinterface.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_tricoord.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_tricoord.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_tricoord.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_tvtkoperation.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_tvtkoperation.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_tvtkoperation.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_uniquevector.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_uniquevector.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_uniquevector.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_updatedesiredmeshdensity.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_updatedesiredmeshdensity.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_updatedesiredmeshdensity.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_updatesurfproj.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_updatesurfproj.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_updatesurfproj.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_utilities.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_utilities.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_utilities.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_vertexdelegate.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_vertexdelegate.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_vertexdelegate.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_vertexmeshdensity.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_vertexmeshdensity.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_vertexmeshdensity.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_volumedefinition.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_volumedefinition.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_volumedefinition.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_vtkEgBoundaryCodesFilter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgBoundaryCodesFilter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgBoundaryCodesFilter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_vtkEgEliminateShortEdges.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgEliminateShortEdges.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgEliminateShortEdges.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_vtkEgExtractVolumeCells.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgExtractVolumeCells.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgExtractVolumeCells.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_vtkEgGridFilter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgGridFilter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgGridFilter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_vtkEgNormalExtrusion.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgNormalExtrusion.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgNormalExtrusion.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_vtkEgPolyDataToUnstructuredGridFilter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgPolyDataToUnstructuredGridFilter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkEgPolyDataToUnstructuredGridFilter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_vtkreader.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkreader.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_vtkreader.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_xmlhandler.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_xmlhandler.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_xmlhandler.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guifillplane.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guifillplane.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guifillplane.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_fillplane.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_fillplane.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_fillplane.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_drnumwriter.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_drnumwriter.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_drnumwriter.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_computemeshdensity.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_computemeshdensity.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_computemeshdensity.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_converttopolymesh.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_converttopolymesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_converttopolymesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guicreatehexshell.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatehexshell.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatehexshell.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guiconverttopolymesh.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guiconverttopolymesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guiconverttopolymesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_createhexibmesh.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_createhexibmesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_createhexibmesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_guicreatehexibmesh.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatehexibmesh.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_guicreatehexibmesh.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/moc_restricttoavailablevolumecells.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/moc_restricttoavailablevolumecells.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/moc_restricttoavailablevolumecells.cpp" +}, +{ + "directory": "/data1/home/ogloth/Development/engrid/build/libengrid", + "command": "/usr/bin/clang++ -DCGAL_NOT_HEADER_ONLY=1 -DCGAL_USE_GMP -DCGAL_USE_GMPXX=1 -DCGAL_USE_MPFR -DGIT_BRANCH=\\\"master\\\" -DGIT_SHA1=\\\"8485ad3f\\\" -DQT_CORE_LIB -DQT_DEBUG -DQT_GUI_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -Dkiss_fft_scalar=double -Dlibengrid_EXPORTS -I/data1/home/ogloth/Development/engrid/build -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtXml -I/data1/home/ogloth/Development/engrid/src/tetgen -I/data1/home/ogloth/Development/engrid/src/libengrid -I/data1/home/ogloth/Development/engrid/build/libengrid -I/data1/home/ogloth/Development/engrid/src -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -isystem /usr/lib64/qt5/mkspecs/linux-g++ -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtWidgets -isystem /usr/include/vtk-9.1 -isystem /usr/include/qt5/QtOpenGL -DTETLIBRARY -g -fPIC -Wno-deprecated -frounding-math -fPIC -o CMakeFiles/libengrid.dir/qrc_engrid.cpp.o -c /data1/home/ogloth/Development/engrid/build/libengrid/qrc_engrid.cpp", + "file": "/data1/home/ogloth/Development/engrid/build/libengrid/qrc_engrid.cpp" +} +] \ No newline at end of file diff --git a/src/libengrid/CMakeLists.txt b/src/libengrid/CMakeLists.txt index bce681da..bc4ca1e3 100644 --- a/src/libengrid/CMakeLists.txt +++ b/src/libengrid/CMakeLists.txt @@ -225,9 +225,13 @@ SET(libengrid_FORMS guiypluscalculator.ui ) -QT4_WRAP_CPP(libengrid_HEADERS_MOC ${libengrid_HEADERS}) -QT4_WRAP_UI(libengrid_FORMS_HEADERS ${libengrid_FORMS}) -QT4_ADD_RESOURCES(libengrid_RESOURCES_RCC engrid.qrc) +# QT4_WRAP_CPP(libengrid_HEADERS_MOC ${libengrid_HEADERS}) +# QT4_WRAP_UI(libengrid_FORMS_HEADERS ${libengrid_FORMS}) +# QT4_ADD_RESOURCES(libengrid_RESOURCES_RCC engrid.qrc) + +qt_wrap_cpp(libengrid_HEADERS_MOC ${libengrid_HEADERS}) +qt_wrap_ui(libengrid_FORMS_HEADERS ${libengrid_FORMS}) +qt_add_resources(libengrid_RESOURCES_RCC engrid.qrc) SET(libengrid_SOURCES ${libengrid_HEADERS} @@ -398,9 +402,6 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") target_link_libraries(libengrid tet) target_link_libraries(libengrid ${QT_LIBRARIES}) target_link_libraries(libengrid ${VTK_LIBRARIES}) - target_link_libraries(libengrid Qt4::QtCore) - target_link_libraries(libengrid Qt4::QtGui) - target_link_libraries(libengrid Qt4::QtXml) endif() target_link_libraries(libengrid ${VTK_LIBRARIES}) diff --git a/src/libengrid/blenderwriter.cpp b/src/libengrid/blenderwriter.cpp index 605e3b6f..828c6168 100644 --- a/src/libengrid/blenderwriter.cpp +++ b/src/libengrid/blenderwriter.cpp @@ -72,10 +72,8 @@ void BlenderWriter::operate() int idx = 0; QVector vertex_written(m_Grid->GetNumberOfPoints(), false); foreach (vtkIdType cellId, object_cells) { - vtkIdType Npts; - vtkIdType *pts; - m_Grid->GetCellPoints(cellId, Npts, pts); - for (int i = 0; i < Npts; ++i) { + EG_GET_CELL(cellId, m_Grid); + for (int i = 0; i < num_pts; ++i) { if(!vertex_written[pts[i]]) { vec3_t x; m_Grid->GetPoints()->GetPoint(pts[i], x.data()); @@ -95,11 +93,9 @@ void BlenderWriter::operate() // write faces foreach (vtkIdType cellId, object_cells) { - vtkIdType Npts; - vtkIdType *pts; - m_Grid->GetCellPoints(cellId, Npts, pts); - f << Npts; - for (int i = 0; i < Npts; ++i) { + EG_GET_CELL(cellId, m_Grid); + f << num_pts; + for (int i = 0; i < num_pts; ++i) { f << ' ' << offset + subvertices_idx[pts[i]]; } f << '\n'; diff --git a/src/libengrid/boundarylayeroperation.cpp b/src/libengrid/boundarylayeroperation.cpp index d05c2553..b12b689d 100644 --- a/src/libengrid/boundarylayeroperation.cpp +++ b/src/libengrid/boundarylayeroperation.cpp @@ -28,11 +28,14 @@ #include "vtkEgPolyDataToUnstructuredGridFilter.h" #include +#include #include #include #include #include +#include #include +#include BoundaryLayerOperation::BoundaryLayerOperation() { @@ -140,18 +143,17 @@ void BoundaryLayerOperation::computeBoundaryLayerVectors() vtkIdType id_cell = m_Part.n2cGG(id_node, i); if (isSurface(id_cell, m_Grid)) { int bc = cell_code->GetValue(id_cell); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); vec3_t a, b, c; - for (int j = 0; j < N_pts; ++j) { + for (int j = 0; j < num_pts; ++j) { if (pts[j] == id_node) { m_Grid->GetPoint(pts[j], a.data()); if (j > 0) { m_Grid->GetPoint(pts[j-1], b.data()); } else { - m_Grid->GetPoint(pts[N_pts-1], b.data()); + m_Grid->GetPoint(pts[num_pts-1], b.data()); } - if (j < N_pts - 1) { + if (j < num_pts - 1) { m_Grid->GetPoint(pts[j+1], c.data()); } else { m_Grid->GetPoint(pts[0], c.data()); @@ -503,17 +505,15 @@ void BoundaryLayerOperation::writeBoundaryLayerVectors(QString file_name, int co int N = 0; for (int i = 0; i < wall_part.getNumberOfCells(); ++ i) { vtkIdType id_cell = wall_part.globalCell(i); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - N += 1 + N_pts; + EG_GET_CELL(id_cell, m_Grid); + N += 1 + num_pts; } f << N << "\n"; for (int i = 0; i < wall_part.getNumberOfCells(); ++ i) { vtkIdType id_cell = wall_part.globalCell(i); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - f << N_pts; - for (int j = 0; j < N_pts; ++j) { + EG_GET_CELL(id_cell, m_Grid); + f << num_pts; + for (int j = 0; j < num_pts; ++j) { f << " " << wall_part.localNode(pts[j]); } f << "\n"; @@ -1060,8 +1060,7 @@ void BoundaryLayerOperation::limitSizeAndAngleErrors() QVector count(m_Grid->GetNumberOfPoints(), 1); for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (isSurface(id_cell, m_Grid)) { - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, m_Grid); bool check_face = true; for (vtkIdType i = 0; i < num_pts; ++i) { if (!m_BoundaryLayerNode[pts[i]]) { @@ -1160,22 +1159,26 @@ void BoundaryLayerOperation::angleSmoother(const QVector& on_boundary, con // Prepare cell info vtkIdType id_cell_1 = edge_faces[0]; vtkIdType id_cell_2 = edge_faces[1]; - vtkIdType npts_c1, *pts_c1; - vtkIdType npts_c2, *pts_c2; - m_Grid->GetCellPoints(id_cell_1, npts_c1, pts_c1); - m_Grid->GetCellPoints(id_cell_2, npts_c2, pts_c2); + + vtkSmartPointer pts_c1 = vtkSmartPointer::New(); + vtkSmartPointer pts_c2 = vtkSmartPointer::New(); + m_Grid->GetCellPoints(id_cell_1, pts_c1); + m_Grid->GetCellPoints(id_cell_2, pts_c2); + vtkIdType npts_c1 = pts_c1->GetNumberOfIds(); + vtkIdType npts_c2 = pts_c2->GetNumberOfIds(); + if (npts_c1 != 3 || npts_c2 !=3) EG_BUG; vtkIdType id_n3_c1; vtkIdType id_n3_c2; for (int j = 0; j < npts_c1; j++) { - if ( pts_c1[j] != id_node && pts_c1[j] != id_neigh) { - id_n3_c1 = pts_c1[j]; + if ( pts_c1->GetId(j) != id_node && pts_c1->GetId(j) != id_neigh) { + id_n3_c1 = pts_c1->GetId(j); } } for (int j = 0; j < npts_c2; j++) { - if ( pts_c2[j] != id_node && pts_c2[j] != id_neigh) { - id_n3_c2 = pts_c2[j]; + if ( pts_c2->GetId(j) != id_node && pts_c2->GetId(j) != id_neigh) { + id_n3_c2 = pts_c2->GetId(j); } } diff --git a/src/libengrid/checkforoverlap.cpp b/src/libengrid/checkforoverlap.cpp index 7ed58bec..bd6b0ea6 100644 --- a/src/libengrid/checkforoverlap.cpp +++ b/src/libengrid/checkforoverlap.cpp @@ -55,18 +55,17 @@ void CheckForOverlap::operate() vec3_t xc(0,0,0); QSet neighbours; { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_face1, N_pts, pts); - x1.resize(N_pts + 1); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_face1, m_Grid); + x1.resize(num_pts + 1); + for (int i = 0; i < num_pts; ++i) { m_Grid->GetPoint(pts[i], x1[i].data()); xc += x1[i]; for (int j = 0; j < m_Part.n2cGSize(pts[i]); ++j) { neighbours.insert(m_Part.n2cGG(pts[i], j)); } } - xc *= 1.0/N_pts; - x1[N_pts] = x1[0]; + xc *= 1.0 / num_pts; + x1[num_pts] = x1[0]; } QVector close_faces; find.getCloseFaces(xc, close_faces); @@ -78,10 +77,9 @@ void CheckForOverlap::operate() foreach (vtkIdType id_face2, close_faces) { if (!neighbours.contains(id_face2)) { ++N_searches; - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_face2, N_pts, pts); - QVector x2(N_pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_face2, m_Grid); + QVector x2(num_pts); + for (int i = 0; i < num_pts; ++i) { m_Grid->GetPoint(pts[i], x2[i].data()); } for (int i = 0; i < x1.size() - 1; ++i) { diff --git a/src/libengrid/correctsurfaceorientation.cpp b/src/libengrid/correctsurfaceorientation.cpp index e2a2bfb2..71e4c095 100644 --- a/src/libengrid/correctsurfaceorientation.cpp +++ b/src/libengrid/correctsurfaceorientation.cpp @@ -19,26 +19,30 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "correctsurfaceorientation.h" +#include void CorrectSurfaceOrientation::pass1() { for (int i = 0; i < pair.size(); ++i) { pair[i].terminate = false; if (pair[i].item1 >= 0) { - vtkIdType Npts1, *pts1; - vtkIdType Npts2, *pts2; - m_Grid->GetCellPoints(pair[i].item1, Npts1, pts1); - m_Grid->GetCellPoints(pair[i].item2, Npts2, pts2); + vtkSmartPointer pts1 = vtkSmartPointer::New(); + vtkSmartPointer pts2 = vtkSmartPointer::New(); + m_Grid->GetCellPoints(pair[i].item1, pts1); + m_Grid->GetCellPoints(pair[i].item2, pts2); + vtkIdType num_pts1 = pts1->GetNumberOfIds(); + vtkIdType num_pts2 = pts2->GetNumberOfIds(); + bool ok = false; - for (int j1 = 0; j1 < Npts1; ++j1) { - for (int j2 = 0; j2 < Npts2; ++j2) { - vtkIdType node_11 = pts1[j1]; - vtkIdType node_21 = pts2[j2]; + for (int j1 = 0; j1 < num_pts1; ++j1) { + for (int j2 = 0; j2 < num_pts2; ++j2) { + vtkIdType node_11 = pts1->GetId(j1); + vtkIdType node_21 = pts2->GetId(j2); vtkIdType node_12, node_22; - if (j1 < Npts1 - 1) node_12 = pts1[j1 + 1]; - else node_12 = pts1[0]; - if (j2 < Npts2 - 1) node_22 = pts2[j2 + 1]; - else node_22 = pts2[0]; + if (j1 < num_pts1 - 1) node_12 = pts1->GetId(j1 + 1); + else node_12 = pts1->GetId(0); + if (j2 < num_pts2 - 1) node_22 = pts2->GetId(j2 + 1); + else node_22 = pts2->GetId(0); if ((node_11 == node_22) && (node_12 == node_21)) { ok = true; break; @@ -46,9 +50,9 @@ void CorrectSurfaceOrientation::pass1() } } if (!ok) { - QVector nodes(Npts2); - for (vtkIdType j = 0; j < Npts2; ++j) nodes[j] = pts2[j]; - for (vtkIdType j = 0; j < Npts2; ++j) pts2[Npts2 - j - 1] = nodes[j]; + QVector nodes(num_pts2); + for (vtkIdType j = 0; j < num_pts2; ++j) nodes[j] = pts2->GetId(j); + for (vtkIdType j = 0; j < num_pts2; ++j) pts2->SetId(num_pts2 - j - 1, nodes[j]); } } } diff --git a/src/libengrid/createboundarylayershell.cpp b/src/libengrid/createboundarylayershell.cpp index 245609c5..e1f8105b 100644 --- a/src/libengrid/createboundarylayershell.cpp +++ b/src/libengrid/createboundarylayershell.cpp @@ -385,8 +385,7 @@ void CreateBoundaryLayerShell::createPrismaticGrid() // create prismatic cells and prepare adjacent quad faces // foreach (vtkIdType id_cell, shell_triangles) { - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, m_Grid); vtkIdType tri_pts[3], pri_pts[6]; for (int i_pts = 0; i_pts < 3; ++i_pts) { if (m_ShellNodeMap[pts[i_pts]] < 0) { diff --git a/src/libengrid/createcadtesselation.cpp b/src/libengrid/createcadtesselation.cpp index c707f4ae..726e28b0 100644 --- a/src/libengrid/createcadtesselation.cpp +++ b/src/libengrid/createcadtesselation.cpp @@ -308,7 +308,7 @@ void CreateCadTesselation::scan(bool create_grid, int interlaces) EG_VTKDCC(vtkIntArray, cell_code, m_Grid, "cell_code"); for (vtkIdType id_cell = 0; id_cell < decimate->GetOutput()->GetNumberOfPolys(); ++id_cell) { EG_GET_CELL(id_cell, decimate->GetOutput()); - vtkIdType id_new_cell = m_Grid->InsertNextCell(type_cell, num_pts, pts); + vtkIdType id_new_cell = m_Grid->InsertNextCell(type_cell, ptIds); cell_code->SetValue(id_new_cell, 1); } } diff --git a/src/libengrid/createhexcore.cpp b/src/libengrid/createhexcore.cpp index 04952342..eedc645b 100644 --- a/src/libengrid/createhexcore.cpp +++ b/src/libengrid/createhexcore.cpp @@ -53,8 +53,7 @@ void CreateHexCore::refineOctree() } else { vtkIdType cell_type = m_Grid->GetCellType(id_cell); if (cell_type == VTK_WEDGE) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); if (pts[3] == id_node) id_surf = pts[0]; else if (pts[4] == id_node) id_surf = pts[1]; else if (pts[5] == id_node) id_surf = pts[2]; diff --git a/src/libengrid/createhexibmesh.cpp b/src/libengrid/createhexibmesh.cpp index 3b1b6e5e..a52500ea 100644 --- a/src/libengrid/createhexibmesh.cpp +++ b/src/libengrid/createhexibmesh.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "createhexibmesh.h" +#include "engrid.h" #include "guimainwindow.h" #include "updatedesiredmeshdensity.h" #include "deletevolumegrid.h" @@ -32,8 +33,7 @@ CreateHexIbMesh::CreateHexIbMesh() double CreateHexIbMesh::meshSize(vtkIdType id_face) { EG_VTKDCN(vtkDoubleArray, cl, m_Grid, "node_meshdensity_desired"); - vtkIdType *pts, num_pts; - m_Grid->GetCellPoints(id_face, num_pts, pts); + EG_GET_CELL(id_face, m_Grid); double h = 0; for (int i = 0; i < 3; ++i) { h = max(h,cl->GetValue(pts[i])); @@ -84,8 +84,7 @@ int CreateHexIbMesh::refine() m_MeshSize.insert(old_num_cells, m_Octree.getNumCells() - old_num_cells, m_MaxEdgeLength); for (int cell = old_num_cells; cell < m_Octree.getNumCells(); ++cell) { foreach (vtkIdType id_face, m_Faces[m_Octree.getParent(cell)]) { - vtkIdType *pts, num_pts; - m_Grid->GetCellPoints(id_face, num_pts, pts); + EG_GET_CELL(id_face, m_Grid); if (num_pts != 3) { EG_BUG; } @@ -147,8 +146,7 @@ void CreateHexIbMesh::findInsideCells(MeshPartition &part, QList &ins if (m_Octree.getLevel(cell) > 0 && !m_Octree.hasChildren(cell)) { m_Faces[cell].clear(); foreach (vtkIdType id_face, m_Faces[m_Octree.getParent(cell)]) { - vtkIdType *pts, num_pts; - m_Grid->GetCellPoints(id_face, num_pts, pts); + EG_GET_CELL(id_face, m_Grid); QVector tri(3); for (int i = 0; i < 3; ++i) { m_Grid->GetPoint(pts[i], tri[i].data()); diff --git a/src/libengrid/deletestraynodes.cpp b/src/libengrid/deletestraynodes.cpp index b29f0adf..2d7590a4 100644 --- a/src/libengrid/deletestraynodes.cpp +++ b/src/libengrid/deletestraynodes.cpp @@ -32,9 +32,8 @@ void DeleteStrayNodes::operate() } QVector active(m_Grid->GetNumberOfPoints(), false); for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { active[pts[i]] = true; } } @@ -70,14 +69,12 @@ void DeleteStrayNodes::operate() } } for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { - vtkIdType N_pts, *pts, type; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - type = m_Grid->GetCellType(id_cell); - QVector new_pts(N_pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + QVector new_pts(num_pts); + for (int i = 0; i < num_pts; ++i) { new_pts[i] = pts[i] - offset[pts[i]]; } - vtkIdType id_new_cell = new_grid->InsertNextCell(type, N_pts, new_pts.data()); + vtkIdType id_new_cell = new_grid->InsertNextCell(type_cell, num_pts, new_pts.data()); copyCellData(m_Grid, id_cell, new_grid, id_new_cell); } makeCopy(new_grid, m_Grid); diff --git a/src/libengrid/deletetetras.cpp b/src/libengrid/deletetetras.cpp index 32bf0156..3699ced2 100644 --- a/src/libengrid/deletetetras.cpp +++ b/src/libengrid/deletetetras.cpp @@ -58,14 +58,13 @@ void DeleteTetras::operate() } } foreach (vtkIdType id_cell, cells) { - vtkIdType *pts, N_pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - QVector new_pts(N_pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + QVector new_pts(num_pts); + for (int i = 0; i < num_pts; ++i) { new_pts[i] = old2new[pts[i]]; } vtkIdType cellType = m_Grid->GetCellType(id_cell); - vtkIdType id_new = new_grid->InsertNextCell(cellType, N_pts, new_pts.data()); + vtkIdType id_new = new_grid->InsertNextCell(cellType, num_pts, new_pts.data()); copyCellData(m_Grid, id_cell, new_grid, id_new); } makeCopy(new_grid, m_Grid); diff --git a/src/libengrid/dolfynwriter.cpp b/src/libengrid/dolfynwriter.cpp index 162b2f6e..480d17a0 100644 --- a/src/libengrid/dolfynwriter.cpp +++ b/src/libengrid/dolfynwriter.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "dolfynwriter.h" +#include "engrid.h" #include "guimainwindow.h" DolfynWriter::DolfynWriter() @@ -46,9 +47,7 @@ void DolfynWriter::writeElements() QString str; EG_VTKDCC(vtkIntArray, cell_code, m_Grid, "cell_code"); for (vtkIdType cellId = 0; cellId < m_Grid->GetNumberOfCells(); ++cellId) { - vtkIdType Npts; - vtkIdType *pts; - m_Grid->GetCellPoints(cellId, Npts, pts); + EG_GET_CELL(cellId, m_Grid); if (m_Grid->GetCellType(cellId) == VTK_HEXAHEDRON) { str.sprintf("%8d %8d %8d %8d %8d %8d %8d %8d %8d %4d %4d\n", elid, @@ -107,8 +106,7 @@ void DolfynWriter::writeBoundaries() } } foreach (vtkIdType id_cell, faces) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); if (m_Grid->GetCellType(id_cell) == VTK_TRIANGLE) { str.sprintf("%8d %8d %8d %8d %9d %4d %4d", bndid, diff --git a/src/libengrid/egvtkinteractorstyle.cpp b/src/libengrid/egvtkinteractorstyle.cpp index 142c4a10..2420bed3 100755 --- a/src/libengrid/egvtkinteractorstyle.cpp +++ b/src/libengrid/egvtkinteractorstyle.cpp @@ -81,6 +81,10 @@ void egvtkInteractorStyle::OnMouseMove() //---------------------------------------------------------------------------- void egvtkInteractorStyle::OnLeftButtonDown() { + int X = this->Interactor->GetEventPosition()[0]; + int Y = this->Interactor->GetEventPosition()[1]; + cout<<"You clicked at ("<FindPokedRenderer(this->Interactor->GetEventPosition()[0], this->Interactor->GetEventPosition()[1]); if (this->CurrentRenderer == NULL) @@ -175,7 +179,7 @@ void egvtkInteractorStyle::OnRightButtonDown() { int X = this->Interactor->GetEventPosition()[0]; int Y = this->Interactor->GetEventPosition()[1]; - cout<<"You clicked at ("<FindPokedRenderer(this->Interactor->GetEventPosition()[0], this->Interactor->GetEventPosition()[1]); diff --git a/src/libengrid/egvtkobject.cpp b/src/libengrid/egvtkobject.cpp index 487c1d11..2fcef2b5 100644 --- a/src/libengrid/egvtkobject.cpp +++ b/src/libengrid/egvtkobject.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "egvtkobject.h" +#include "engrid.h" #include "guimainwindow.h" #include @@ -29,6 +30,8 @@ #include #include #include +#include +#include int EgVtkObject::DebugLevel; @@ -49,12 +52,10 @@ void EgVtkObject::computeNormals createNodeMapping(nodes, g2s, grid); for (int i_cell = 0; i_cell < cells.count(); ++i_cell) { vtkIdType id_cell = cells[i_cell]; - vtkIdType *pts; - vtkIdType npts; - grid->GetCellPoints(id_cell, npts, pts); + EG_GET_CELL(id_cell, grid); cell_normals[i_cell] = cellNormal(grid, id_cell); cell_normals[i_cell].normalise(); - for (int i_pts = 0; i_pts < npts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { if (g2s[pts[i_pts]] != -1) { node_normals[g2s[pts[i_pts]]] += cell_normals[i_cell]; } @@ -101,11 +102,13 @@ void EgVtkObject::createNodeToBcMapping EG_BUG; bcs.fill(QSet(), grid->GetNumberOfPoints()); grid->BuildLinks(); + auto abstract_links = grid->GetCellLinks(); + auto cell_links = dynamic_cast(abstract_links); EG_VTKDCC(vtkIntArray, cell_code, grid, "cell_code"); for (vtkIdType nodeId = 0; nodeId < grid->GetNumberOfPoints(); ++nodeId) { - int Ncells = grid->GetCellLinks()->GetNcells(nodeId); + int Ncells = cell_links->GetNcells(nodeId); for (int i = 0; i < Ncells; ++i) { - vtkIdType id_cell = grid->GetCellLinks()->GetCells(nodeId)[i]; + vtkIdType id_cell = cell_links->GetCells(nodeId)[i]; vtkIdType ct = grid->GetCellType(id_cell); if ((ct == VTK_TRIANGLE) || (ct = VTK_QUAD)) { if (cell_code->GetValue(id_cell) > 0) { @@ -179,8 +182,7 @@ void EgVtkObject::createNodeToNode(QVector &cells, QVector n2n.fill(QSet(), nodes.size()); foreach (vtkIdType id_cell, cells) { if (isSurface(id_cell, grid)) { - vtkIdType num_pts, *pts; - grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, grid); QVector n(num_pts); for (int i = 0; i < num_pts; ++i) { n[i] = _nodes[pts[i]]; @@ -202,8 +204,9 @@ void EgVtkObject::createNodeToNode(QVector &cells, QVector } else if (type_cell == VTK_HEXAHEDRON) { num_faces = 6; } else if (type_cell == VTK_POLYHEDRON) { - vtkIdType *pts; - grid->GetFaceStream(id_cell, num_faces, pts); + vtkSmartPointer stream = vtkSmartPointer::New(); + grid->GetFaceStream(id_cell, stream); + num_faces = stream->GetId(0); } for (int i = 0; i < num_faces; ++i) { @@ -695,19 +698,18 @@ void EgVtkObject::addToPolyData pd_node_index->SetNumberOfValues(nodes.size()); for (int i_cell = 0; i_cell < cells.size(); ++i_cell) { vtkIdType id_cell = cells[i_cell]; - vtkIdType cellType = grid->GetCellType(id_cell); - if ((cellType != VTK_TRIANGLE) && (cellType != VTK_QUAD)) { + vtkIdType cell_type = grid->GetCellType(id_cell); + if ((cell_type != VTK_TRIANGLE) && (cell_type != VTK_QUAD)) { EG_ERR_RETURN("unsupported cell type for this operation"); } - vtkIdType Npts, *pts; - grid->GetCellPoints(id_cell, Npts, pts); - vtkIdType *new_pts = new vtkIdType[Npts]; - for (int i = 0; i < Npts; ++i) { - new_pts[i] = _nodes[pts[i]]; + EG_GET_CELL(id_cell, grid); + vtkSmartPointer new_pts = vtkSmartPointer::New(); + new_pts->SetNumberOfIds(num_pts); + for (int i = 0; i < num_pts; ++i) { + new_pts->SetId(i, _nodes[pts[i]]); } - vtkIdType newCellId = pdata->InsertNextCell(cellType, Npts, new_pts); - pd_cell_index->SetValue(newCellId, id_cell); - delete [] new_pts; + vtkIdType new_cell_id = pdata->InsertNextCell(cell_type, new_pts); + pd_cell_index->SetValue(new_cell_id, id_cell); } for (int i_node = 0; i_node < nodes.size(); ++i_node) { vec3_t x; @@ -858,10 +860,9 @@ void EgVtkObject::allocateGrid(vtkUnstructuredGrid *grid, vtkIdType Ncells, vtkI vec3_t EgVtkObject::cellCentre(vtkUnstructuredGrid *grid, vtkIdType id_cell) { vec3_t x,xc(0,0,0); - vtkIdType *pts, N_pts; - grid->GetCellPoints(id_cell, N_pts, pts); - double f = 1.0/N_pts; - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + EG_GET_CELL(id_cell, grid); + double f = 1.0/num_pts; + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { grid->GetPoint(pts[i_pts], x.data()); xc += f*x; } @@ -988,14 +989,10 @@ void EgVtkObject::makeCopyNoAlloc(vtkUnstructuredGrid *src, vtkUnstructuredGrid copyNodeData(src, id_node, dst, id_node); } for (vtkIdType id_cell = 0; id_cell < src->GetNumberOfCells(); ++id_cell) { - vtkIdType num, *stream; - vtkIdType type_cell = src->GetCellType(id_cell); - if (type_cell == VTK_POLYHEDRON) { - src->GetFaceStream(id_cell, num, stream); - } else { - src->GetCellPoints(id_cell, num, stream); - } - vtkIdType id_new_cell = dst->InsertNextCell(type_cell, num, stream); + vtkSmartPointer stream = vtkSmartPointer::New(); + src->GetFaceStream(id_cell, stream); + auto type_cell = src->GetCellType(id_cell); + vtkIdType id_new_cell = dst->InsertNextCell(type_cell, stream); copyCellData(src, id_cell, dst, id_new_cell); } } @@ -1003,18 +1000,17 @@ void EgVtkObject::makeCopyNoAlloc(vtkUnstructuredGrid *src, vtkUnstructuredGrid void EgVtkObject::reorientateFace(vtkUnstructuredGrid *grid, vtkIdType id_face) { EG_VTKDCC(vtkIntArray, cell_curdir, grid, "cell_curdir"); - vtkIdType N_pts, *pts; - grid->GetCellPoints(id_face, N_pts, pts); - QVector new_pts(N_pts); - for (int i = 0; i < N_pts; ++i) { - new_pts[i] = pts[N_pts - i - 1]; + EG_GET_CELL(id_face, grid); + QVector new_pts(num_pts); + for (int i = 0; i < num_pts; ++i) { + new_pts[i] = pts[num_pts - i - 1]; } if (cell_curdir->GetValue(id_face) == 0) { cell_curdir->SetValue(id_face, 1); } else { cell_curdir->SetValue(id_face, 0); } - grid->ReplaceCell(id_face, N_pts, new_pts.data()); + grid->ReplaceCell(id_face, num_pts, new_pts.data()); } void EgVtkObject::resetOrientation(vtkUnstructuredGrid *grid) @@ -1035,22 +1031,21 @@ void EgVtkObject::resetOrientation(vtkUnstructuredGrid *grid) vtkIdType EgVtkObject::findVolumeCell(vtkUnstructuredGrid *grid, vtkIdType id_surf, g2l_t _nodes, l2g_t cells, g2l_t _cells, l2l_t n2c) { - vtkIdType N_pts=0, *pts=NULL; //allways initialize variables, otherwise unexpected results will occur! - grid->GetCellPoints(id_surf, N_pts, pts); - QVector > inters(N_pts-1); + EG_GET_CELL(id_surf, grid); + QVector > inters(num_pts-1); qcontIntersection(n2c[_nodes[pts[0]]], n2c[_nodes[pts[1]]], inters[0]); int i_pts = 2; - while (i_pts < N_pts) { + while (i_pts < num_pts) { qcontIntersection(inters[i_pts-2], n2c[_nodes[pts[i_pts]]], inters[i_pts-1]); ++i_pts; } - if (inters[N_pts-2].size() == 0) { + if (inters[num_pts-2].size() == 0) { return -1; - } else if (inters[N_pts-2].size() > 2) { + } else if (inters[num_pts-2].size() > 2) { EG_BUG; } vtkIdType id_vol = -1; - foreach (int i_cells, inters[N_pts-2]) { + foreach (int i_cells, inters[num_pts-2]) { if (cells[i_cells] != id_surf) { id_vol = cells[i_cells]; } @@ -1348,10 +1343,8 @@ vec3_t EgVtkObject::getCentreOfCellFace(vtkUnstructuredGrid *grid, vtkIdType id_ void EgVtkObject::getEdgeOfCell(vtkUnstructuredGrid *grid, vtkIdType id_cell, int i_edge, QVector &ids) { - vtkIdType type_cell = grid->GetCellType(id_cell); ids.clear(); - vtkIdType *pts, N_pts; - grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, grid); if (type_cell == VTK_TETRA) { ids.resize(2); if (i_edge == 0) { ids[0] = pts[0]; ids[1] = pts[1]; } diff --git a/src/libengrid/eliminatesmallbranches.cpp b/src/libengrid/eliminatesmallbranches.cpp index a8cc51d7..e578bec3 100644 --- a/src/libengrid/eliminatesmallbranches.cpp +++ b/src/libengrid/eliminatesmallbranches.cpp @@ -21,6 +21,7 @@ #include "eliminatesmallbranches.h" #include "createvolumemesh.h" +#include "engrid.h" #include "guimainwindow.h" #include @@ -138,9 +139,8 @@ void EliminateSmallBranches::fillCraters() QVector is_mainvol_node(m_Grid->GetNumberOfPoints(), false); for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (m_MainVolumeCell[id_cell]) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { is_mainvol_node[pts[i]] = true; } } @@ -148,9 +148,8 @@ void EliminateSmallBranches::fillCraters() QVector is_mainvol_cell(m_MainVolumeCell.size(), true); for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (!m_MainVolumeCell[id_cell]) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { if (!is_mainvol_node[pts[i]]) { is_mainvol_cell[id_cell] = false; break; @@ -255,9 +254,8 @@ void EliminateSmallBranches::operate() m_DeleteCell.fill(false, m_Grid->GetNumberOfCells()); m_IsSurfaceNode.fill(false, m_Grid->GetNumberOfPoints()); foreach(vtkIdType id_face, faces) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_face, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_face, m_Grid); + for (int i = 0; i < num_pts; ++i) { m_IsSurfaceNode[pts[i]] = true; } m_DeleteCell[id_face] = true; @@ -265,9 +263,8 @@ void EliminateSmallBranches::operate() cout << "marking cells to be removed" << endl; foreach(vtkIdType id_cell, cells) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { if (needsToBeMarked(pts[i])) { m_DeleteCell[id_cell] = true; break; @@ -319,9 +316,8 @@ void EliminateSmallBranches::operate() for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (!m_DeleteCell[id_cell]) { ++num_new_cells; - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { if (old2new[pts[i]] == -1) { old2new[pts[i]] = num_new_nodes; ++num_new_nodes; @@ -345,15 +341,15 @@ void EliminateSmallBranches::operate() EG_VTKDCC(vtkIntArray, cell_curdir, new_grid, "cell_curdir"); for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (!m_DeleteCell[id_cell]) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { pts[i] = old2new[pts[i]]; if (pts[i] == -1) { EG_BUG; } + ptIds->SetId(i, pts[i]); } - vtkIdType id_new_cell = new_grid->InsertNextCell(m_Grid->GetCellType(id_cell), N_pts, pts); + vtkIdType id_new_cell = new_grid->InsertNextCell(m_Grid->GetCellType(id_cell), ptIds); copyCellData(m_Grid, id_cell, new_grid, id_new_cell); if (m_Grid->GetCellType(id_cell) == VTK_TETRA) { for (int i = 0; i < m_Part.c2cGSize(id_cell); ++i) { diff --git a/src/libengrid/engrid.h b/src/libengrid/engrid.h index e1235f1c..966d07ec 100644 --- a/src/libengrid/engrid.h +++ b/src/libengrid/engrid.h @@ -34,6 +34,7 @@ #include #include +#include #include #include #include @@ -154,8 +155,6 @@ if (GRID->GetCellData()->GetScalars(NAME)) { \ if (t == VTK_STRING) msg += "VTK_STRING"; \ if (t == VTK_LONG_LONG) msg += "VTK_LONG_LONG"; \ if (t == VTK_UNSIGNED_LONG_LONG) msg += "VTK_UNSIGNED_LONG_LONG"; \ - if (t == VTK___INT64) msg += "VTK___INT64"; \ - if (t == VTK_UNSIGNED___INT64) msg += "VTK_UNSIGNED___INT64"; \ msg += ")"; \ EG_ERR_RETURN(msg); \ }; \ @@ -196,8 +195,6 @@ if (GRID->GetPointData()->GetScalars(NAME)) { \ if (t == VTK_STRING) msg += "VTK_STRING"; \ if (t == VTK_LONG_LONG) msg += "VTK_LONG_LONG"; \ if (t == VTK_UNSIGNED_LONG_LONG) msg += "VTK_UNSIGNED_LONG_LONG"; \ - if (t == VTK___INT64) msg += "VTK___INT64"; \ - if (t == VTK_UNSIGNED___INT64) msg += "VTK_UNSIGNED___INT64"; \ msg += ")"; \ EG_ERR_RETURN(msg); \ }; \ @@ -272,9 +269,15 @@ connect(ui.action ## OPER, SIGNAL(triggered()), this, SLOT(call ## OPER ())); * @param GRID a pointer to the vtkUnstructuredGrid */ #define EG_GET_CELL(ID_CELL, GRID) \ - vtkIdType num_pts, *pts; \ + vtkSmartPointer ptIds = vtkSmartPointer::New(); \ vtkIdType type_cell = GRID->GetCellType(ID_CELL); \ - GRID->GetCellPoints(ID_CELL, num_pts, pts); + GRID->GetCellPoints(ID_CELL, ptIds); \ + vtkIdType num_pts = ptIds->GetNumberOfIds(); \ + std::vector pts(num_pts); \ + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { \ + pts[i_pts] = ptIds->GetId(i_pts); \ + } + #define EG_LARGE_REAL 1e99 @@ -371,5 +374,16 @@ inline uint qHash(const SortedPair &P) return ((h1 << 16) | (h1 >> 16)) ^ h2; } +template +inline vtkSmartPointer idListFromVector(const C& c) +{ + vtkSmartPointer id_list = vtkSmartPointer::New(); + id_list->SetNumberOfIds(c.size()); + for (int i = 0; i < c.size(); ++i) { + id_list->SetId(i, c[i]); + } + return id_list; +} + #endif diff --git a/src/libengrid/facefinder.cpp b/src/libengrid/facefinder.cpp index 775603c5..baef1611 100644 --- a/src/libengrid/facefinder.cpp +++ b/src/libengrid/facefinder.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "facefinder.h" +#include "engrid.h" #include "triangle.h" FaceFinder::FaceFinder() @@ -118,15 +119,14 @@ double FaceFinder::calcCritLength(vtkIdType id_cell) return max(m_MinSize, 10*m_Triangles[id_cell].smallestLength()); } QVector x; - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - x.resize(N_pts + 1); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + x.resize(num_pts + 1); + for (int i = 0; i < num_pts; ++i) { m_Grid->GetPoint(pts[i], x[i].data()); } - x[N_pts] = x[0]; + x[num_pts] = x[0]; double L = 0; - for (int i = 0; i < N_pts; ++i) { + for (int i = 0; i < num_pts; ++i) { L = max(L, (x[i]-x[i+1]).abs()); } return L; @@ -137,8 +137,7 @@ void FaceFinder::calcCritLengthForAllNodes() m_CritLengthNode.fill(EG_LARGE_REAL, m_Grid->GetNumberOfPoints()); for (vtkIdType id_face = 0; id_face < m_Grid->GetNumberOfCells(); ++id_face) { double l_crit = calcCritLength(id_face); - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_face, num_pts, pts); + EG_GET_CELL(id_face, m_Grid); for (int i = 0; i < num_pts; ++i) { m_CritLengthNode[pts[i]] = min(m_CritLengthNode[pts[i]], l_crit); } diff --git a/src/libengrid/filetemplate.h b/src/libengrid/filetemplate.h index c0b0fe44..4d9cc931 100644 --- a/src/libengrid/filetemplate.h +++ b/src/libengrid/filetemplate.h @@ -30,7 +30,14 @@ #include #include #include +#include #include +#include +#include +#include +#include +#include +#include int fileTemplateTest( int argc, char ** argv ); int fileTemplateTest(); diff --git a/src/libengrid/fillplane.cpp b/src/libengrid/fillplane.cpp index 62e4b69a..30c966b6 100644 --- a/src/libengrid/fillplane.cpp +++ b/src/libengrid/fillplane.cpp @@ -23,6 +23,7 @@ #include #include +#include "engrid.h" #include "fillplane.h" #include "vtkEgPolyDataToUnstructuredGridFilter.h" #include "guimainwindow.h" @@ -63,9 +64,8 @@ void FillPlane::createEdgesOnPlane(vtkUnstructuredGrid *edge_grid) QVector is_edge_node(m_Grid->GetNumberOfPoints(), false); for (vtkIdType id_face = 0; id_face < m_Grid->GetNumberOfCells(); ++id_face) { - vtkIdType num_pts, *pts; if (isSurface(id_face, m_Grid)) { - m_Grid->GetCellPoints(id_face, num_pts, pts); + EG_GET_CELL(id_face, m_Grid); for (int i = 0; i < num_pts; ++i) { if (m_Part.c2cGG(id_face, i) == -1) { vtkIdType id_node1 = pts[i]; @@ -107,9 +107,8 @@ void FillPlane::createEdgesOnPlane(vtkUnstructuredGrid *edge_grid) for (vtkIdType id_face = 0; id_face < m_Grid->GetNumberOfCells(); ++id_face) { - vtkIdType num_pts, *pts; if (isSurface(id_face, m_Grid)) { - m_Grid->GetCellPoints(id_face, num_pts, pts); + EG_GET_CELL(id_face, m_Grid); for (int i = 0; i < num_pts; ++i) { if (m_Part.c2cGG(id_face, i) == -1) { vtkIdType id_node1 = pts[i]; @@ -136,8 +135,7 @@ void FillPlane::closeLoops(vtkUnstructuredGrid *edge_grid) QList end_nodes; QVector count(edge_grid->GetNumberOfPoints(), 0); for (vtkIdType id_edge = 0; id_edge < edge_grid->GetNumberOfCells(); ++id_edge) { - vtkIdType num_pts, *pts; - edge_grid->GetCellPoints(id_edge, num_pts, pts); + EG_GET_CELL(id_edge, edge_grid); for (int i = 0; i < num_pts; ++i) { ++count[pts[i]]; } @@ -248,8 +246,7 @@ void FillPlane::order(vtkUnstructuredGrid *edge_grid, vtkPolyData *edge_pdata) { QVector > edges(edge_grid->GetNumberOfCells(), QVector(2)); for (vtkIdType id_edge = 0; id_edge < edge_grid->GetNumberOfCells(); ++id_edge) { - vtkIdType num_pts, *pts; - edge_grid->GetCellPoints(id_edge, num_pts, pts); + EG_GET_CELL(id_edge, edge_grid); if (num_pts != 2) { EG_BUG; } diff --git a/src/libengrid/fixcadgeometry.cpp b/src/libengrid/fixcadgeometry.cpp index 8878612a..e854df7e 100644 --- a/src/libengrid/fixcadgeometry.cpp +++ b/src/libengrid/fixcadgeometry.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "fixcadgeometry.h" +#include "engrid.h" #include "surfacemesher.h" #include "vertexmeshdensity.h" #include "guimainwindow.h" @@ -129,15 +130,14 @@ void FixCadGeometry::customUpdateNodeInfo() } foreach (vtkIdType id_cell, cells) { if (isSurface(id_cell, m_Grid)) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - if (N_pts == 3) { + EG_GET_CELL(id_cell, m_Grid); + if (num_pts == 3) { vec3_t n1 = cellNormal(m_Grid, id_cell); QVector num_bad_edges(3, 0); - for (int i = 0; i < N_pts; ++i) { + for (int i = 0; i < num_pts; ++i) { int i1 = i; int i2 = 0; - if (i < N_pts - 1) { + if (i < num_pts - 1) { i2= i+1; } vec3_t x1, x2; @@ -157,7 +157,7 @@ void FixCadGeometry::customUpdateNodeInfo() } } } - for (int i = 0; i < N_pts; ++i) { + for (int i = 0; i < num_pts; ++i) { if (num_bad_edges[i] >= 2) { node_type->SetValue(pts[i], EG_SIMPLE_VERTEX); } @@ -204,9 +204,8 @@ void FixCadGeometry::copyFaces(const QVector ©_face) } for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (copy_face[id_cell]) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - vtkIdType id_new_cell = new_grid->InsertNextCell(m_Grid->GetCellType(id_cell), N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); + vtkIdType id_new_cell = new_grid->InsertNextCell(m_Grid->GetCellType(id_cell), ptIds); copyCellData(m_Grid, id_cell, new_grid, id_new_cell); } } @@ -235,20 +234,19 @@ void FixCadGeometry::fixNonManifold2() cout << "fixing non-manifold edges\n (pass 2) ..." << endl; QVector copy_face(m_Grid->GetNumberOfCells(), true); for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - if (N_pts < 3) { + EG_GET_CELL(id_cell, m_Grid); + if (num_pts < 3) { copy_face[id_cell] = false; break; } - QVector > n2c(N_pts); - for (int i = 0; i < N_pts; ++i) { + QVector > n2c(num_pts); + for (int i = 0; i < num_pts; ++i) { for (int j = 0; j < m_Part.n2cGSize(pts[i]); ++j) { n2c[i].insert(m_Part.n2cGG(pts[i], j)); } } QSet faces = n2c[0]; - for (int i = 1; i < N_pts; ++i) { + for (int i = 1; i < num_pts; ++i) { faces = faces.intersect(n2c[i]); } if (faces.size() > 1) { @@ -273,12 +271,11 @@ void FixCadGeometry::markNonManifold() for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (isSurface(id_cell, m_Grid)) { new_bc = max(new_bc, cell_code->GetValue(id_cell)); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { QSet edge_cells; int N = 0; - if (i < N_pts - 1) { + if (i < num_pts - 1) { N = getEdgeCells(pts[i], pts[i+1], edge_cells); } else { N = getEdgeCells(pts[i], pts[0], edge_cells); @@ -300,9 +297,8 @@ void FixCadGeometry::markNonManifold() for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (isSurface(id_cell, m_Grid)) { if ((cell_code->GetValue(id_cell)) == bc && nm_face[id_cell]) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { for (int j = 0; j < m_Part.n2cGSize(pts[i]); ++j) { vtkIdType id_neigh = m_Part.n2cGG(pts[i], j); if (cell_code->GetValue(id_neigh) == bc ) { diff --git a/src/libengrid/fixstl.cpp b/src/libengrid/fixstl.cpp index 91aba69c..3ccade98 100644 --- a/src/libengrid/fixstl.cpp +++ b/src/libengrid/fixstl.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "fixstl.h" #include "deletetetras.h" +#include "engrid.h" #include "uniquevector.h" #include @@ -103,8 +104,7 @@ void FixSTL::operate() loc->BuildLocator(); for (int i_tetras = 0; i_tetras < tetras.size(); ++i_tetras) { vtkIdType id_tetra = tetras[i_tetras]; - vtkIdType *pts, N_pts; - tetra_grid->GetCellPoints(id_tetra, N_pts, pts); + EG_GET_CELL(id_tetra, m_Grid); // face 0 if (t2t[i_tetras][0] < i_tetras) { T[0] = pts[2]; T[1] = pts[1]; T[2] = pts[0]; diff --git a/src/libengrid/geometrytools.cpp b/src/libengrid/geometrytools.cpp index 9520ad14..ce3ae2a3 100644 --- a/src/libengrid/geometrytools.cpp +++ b/src/libengrid/geometrytools.cpp @@ -309,19 +309,17 @@ vec3_t quadNormal(vtkUnstructuredGrid *grid, vtkIdType p1, vtkIdType p2, vtkIdTy vec3_t cellNormal(vtkUnstructuredGrid *grid, vtkIdType i) { - vtkIdType *pts; - vtkIdType npts; vec3_t n(0,0,0); - grid->GetCellPoints(i, npts, pts); - if (npts < 3) { + EG_GET_CELL(i, grid); + if (num_pts < 3) { EG_BUG; - } else if (npts == 3) { + } else if (num_pts == 3) { return triNormal(grid,pts[0],pts[1],pts[2]); - } else if (npts == 4) { + } else if (num_pts == 4) { return quadNormal(grid,pts[0],pts[1],pts[2],pts[3]); } else { QList x; - for (int i = 0; i < npts; ++i) { + for (int i = 0; i < num_pts; ++i) { vec3_t xp; grid->GetPoint(pts[i], xp.data()); x << xp; @@ -334,11 +332,9 @@ vec3_t cellNormal(vtkUnstructuredGrid *grid, vtkIdType i) double cellVA(vtkUnstructuredGrid *grid, vtkIdType cellId, bool neg) { - vtkIdType *pts; - vtkIdType Npts; - vec3_t p[8]; - grid->GetCellPoints(cellId, Npts, pts); - for (int i_pts = 0; i_pts < Npts; ++i_pts) { + vec3_t p[8]; + EG_GET_CELL(cellId, grid); + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { grid->GetPoints()->GetPoint(pts[i_pts], p[i_pts].data()); } vtkIdType cellType = grid->GetCellType(cellId); @@ -398,28 +394,27 @@ double cosAngle(vtkUnstructuredGrid *grid, vtkIdType cell1, vtkIdType cell2) vec3_t getCenter(vtkUnstructuredGrid *grid, vtkIdType cellId, double& Rmin, double& Rmax) { - vtkIdType *pts, Npts; - grid->GetCellPoints(cellId, Npts, pts); - if(Npts<=0) { - cout<<"FATAL ERROR: Npts<=0"<GetPoints()->GetPoint(pts[i], xp.data()); xc += xp; } - xc = 1.0/(double)Npts * xc; + xc = 1.0/(double)num_pts * xc; //calculate Rmin+Rmax vec3_t xp; grid->GetPoints()->GetPoint(pts[0], xp.data()); Rmin = 0.25*(xp-xc).abs(); Rmax = 0.25*(xp-xc).abs(); - for (vtkIdType i = 1; i < Npts; ++i) { + for (vtkIdType i = 1; i < num_pts; ++i) { grid->GetPoints()->GetPoint(pts[i], xp.data()); Rmin = min(Rmin, 0.25*(xp-xc).abs()); Rmax = max(Rmax, 0.25*(xp-xc).abs()); @@ -505,8 +500,7 @@ double distance2(vtkUnstructuredGrid *grid, vtkIdType id_node1, vtkIdType id_nod } double areaOfCircumscribedCircle(vtkUnstructuredGrid *grid, vtkIdType id_cell) { - vtkIdType N_pts, *pts; - grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, grid); vec3_t A,B,C; grid->GetPoints()->GetPoint(pts[0], A.data()); grid->GetPoints()->GetPoint(pts[1], B.data()); diff --git a/src/libengrid/gmshwriter.cpp b/src/libengrid/gmshwriter.cpp index c7449bfb..8ebd3997 100644 --- a/src/libengrid/gmshwriter.cpp +++ b/src/libengrid/gmshwriter.cpp @@ -21,6 +21,7 @@ #include "gmshwriter.h" #include +#include "engrid.h" #include "guimainwindow.h" GmshWriter::GmshWriter() @@ -46,44 +47,42 @@ void GmshWriter::writeAscii1(vtkUnstructuredGrid *m_Grid) f << m_Grid->GetNumberOfCells() << '\n'; EG_VTKDCC(vtkIntArray, cell_code, m_Grid, "cell_code"); for (vtkIdType cellId = 0; cellId < m_Grid->GetNumberOfCells(); ++cellId) { - vtkIdType Npts; - vtkIdType *pts; - m_Grid->GetCellPoints(cellId, Npts, pts); + EG_GET_CELL(cellId, m_Grid); f << cellId+1; if (m_Grid->GetCellType(cellId) == VTK_TRIANGLE) { - f << " 2 " << cell_code->GetValue(cellId) << " 0 " << Npts; - for (int i = 0; i < Npts; ++i) { + f << " 2 " << cell_code->GetValue(cellId) << " 0 " << num_pts; + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; } else if (m_Grid->GetCellType(cellId) == VTK_QUAD) { - f << " 3 " << cell_code->GetValue(cellId) << " 0 " << Npts; - for (int i = 0; i < Npts; ++i) { + f << " 3 " << cell_code->GetValue(cellId) << " 0 " << num_pts; + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; } else if (m_Grid->GetCellType(cellId) == VTK_TETRA) { - f << " 4 0 0 " << Npts; + f << " 4 0 0 " << num_pts; - for (int i = 0; i < Npts; ++i) { + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; //f << ' ' << pts[0]+1 << ' ' << pts[1]+1 << ' ' << pts[3]+1 << ' ' << pts[2]+1; } else if (m_Grid->GetCellType(cellId) == VTK_PYRAMID) { - f << " 7 0 0 " << Npts; - for (int i = 0; i < Npts; ++i) { + f << " 7 0 0 " << num_pts; + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; } else if (m_Grid->GetCellType(cellId) == VTK_WEDGE) { - f << " 6 0 0 " << Npts; - for (int i = 3; i < Npts; ++i) { + f << " 6 0 0 " << num_pts; + for (int i = 3; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; - for (int i = 0; i < Npts-3; ++i) { + for (int i = 0; i < num_pts-3; ++i) { f << ' ' << pts[i]+1; }; } else if (m_Grid->GetCellType(cellId) == VTK_HEXAHEDRON) { - f << " 5 0 0 " << Npts; - for (int i = 0; i < Npts; ++i) { + f << " 5 0 0 " << num_pts; + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; }; @@ -110,41 +109,39 @@ void GmshWriter::writeAscii2(vtkUnstructuredGrid *m_Grid) f << m_Grid->GetNumberOfCells() << '\n'; EG_VTKDCC(vtkIntArray, cell_code, m_Grid, "cell_code"); for (vtkIdType cellId = 0; cellId < m_Grid->GetNumberOfCells(); ++cellId) { - vtkIdType Npts; - vtkIdType *pts; - m_Grid->GetCellPoints(cellId, Npts, pts); + EG_GET_CELL(cellId, m_Grid); f << cellId+1; if (m_Grid->GetCellType(cellId) == VTK_TRIANGLE) { f << " 2 1 " << cell_code->GetValue(cellId); - for (int i = 0; i < Npts; ++i) { + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; } else if (m_Grid->GetCellType(cellId) == VTK_QUAD) { f << " 3 1 " << cell_code->GetValue(cellId); - for (int i = 0; i < Npts; ++i) { + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; } else if (m_Grid->GetCellType(cellId) == VTK_TETRA) { f << " 4 1 0 "; - for (int i = 0; i < Npts; ++i) { + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; } else if (m_Grid->GetCellType(cellId) == VTK_PYRAMID) { f << " 7 1 0 "; - for (int i = 0; i < Npts; ++i) { + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; } else if (m_Grid->GetCellType(cellId) == VTK_WEDGE) { f << " 6 1 0 "; - for (int i = 3; i < Npts; ++i) { + for (int i = 3; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; - for (int i = 0; i < Npts-3; ++i) { + for (int i = 0; i < num_pts-3; ++i) { f << ' ' << pts[i]+1; }; } else if (m_Grid->GetCellType(cellId) == VTK_HEXAHEDRON) { f << " 5 1 0 "; - for (int i = 0; i < Npts; ++i) { + for (int i = 0; i < num_pts; ++i) { f << ' ' << pts[i]+1; }; }; diff --git a/src/libengrid/gridsmoother.cpp b/src/libengrid/gridsmoother.cpp index e925615e..5147e7f0 100644 --- a/src/libengrid/gridsmoother.cpp +++ b/src/libengrid/gridsmoother.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "gridsmoother.h" +#include "engrid.h" #include "guimainwindow.h" #include "elements.h" #include "optimisenormalvector.h" @@ -57,20 +58,18 @@ void GridSmoother::markNodes() qCopy(m_NodeMarked.begin(),m_NodeMarked.end(),new_mark.begin()); for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { bool mark_cell = false; - vtkIdType type_cell, N_pts, *pts; - type_cell = m_Grid->GetCellType(id_cell); - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); if (type_cell == VTK_WEDGE) { mark_cell = true; } else { - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { if (m_NodeMarked[pts[i_pts]]) { mark_cell = true; } } } if (mark_cell) { - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { new_mark[pts[i_pts]] = true; } } @@ -82,9 +81,8 @@ void GridSmoother::markNodes() for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (isSurface(id_cell, m_Grid)) { if (!free_bcs.contains(cell_code->GetValue(id_cell))) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + EG_GET_CELL(id_cell, m_Grid); + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { m_NodeMarked[pts[i_pts]] = false; } } @@ -121,9 +119,8 @@ bool GridSmoother::setNewPosition(vtkIdType id_node, vec3_t x_new) vtkIdType type_cell = m_Grid->GetCellType(id_cell); if (type_cell == VTK_TRIANGLE) { - vtkIdType N_pts, *pts; vec3_t x[3]; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); for (int i = 0; i < 3; ++i) { m_Grid->GetPoint(pts[i], x[i].data()); } @@ -148,9 +145,8 @@ bool GridSmoother::setNewPosition(vtkIdType id_node, vec3_t x_new) } if (type_cell == VTK_TETRA) { - vtkIdType N_pts, *pts; vec3_t x[4]; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); for (int i = 0; i < 4; ++i) { m_Grid->GetPoint(pts[i], x[i].data()); } @@ -168,9 +164,8 @@ bool GridSmoother::setNewPosition(vtkIdType id_node, vec3_t x_new) } if (type_cell == VTK_WEDGE && m_StrictPrismChecking) { - vtkIdType N_pts, *pts; vec3_t xtet[4]; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); bool ok = true; for (int i = 0; i < 4; ++i) { // variation ok = true; @@ -215,8 +210,7 @@ void GridSmoother::correctDx(int i_nodes, vec3_t &Dx) Dx = x_new - x_old; } else { if (m_Grid->GetCellType(id_cell) == VTK_WEDGE) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); vtkIdType id_surf_node = -1; if (pts[3] == nodes[i_nodes]) id_surf_node = pts[0]; if (pts[4] == nodes[i_nodes]) id_surf_node = pts[1]; @@ -296,18 +290,17 @@ void GridSmoother::computeNormals() vtkIdType id_cell = m_Part.n2cGG(id_node, i); if (isSurface(id_cell, m_Grid)) { int bc = cell_code->GetValue(id_cell); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); vec3_t a, b, c; - for (int j = 0; j < N_pts; ++j) { + for (int j = 0; j < num_pts; ++j) { if (pts[j] == id_node) { m_Grid->GetPoint(pts[j], a.data()); if (j > 0) { m_Grid->GetPoint(pts[j-1], b.data()); } else { - m_Grid->GetPoint(pts[N_pts-1], b.data()); + m_Grid->GetPoint(pts[num_pts-1], b.data()); } - if (j < N_pts - 1) { + if (j < num_pts - 1) { m_Grid->GetPoint(pts[j+1], c.data()); } else { m_Grid->GetPoint(pts[0], c.data()); @@ -394,9 +387,8 @@ void GridSmoother::relaxNormalVectors() QVector > n2bc(m_Grid->GetNumberOfPoints()); for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (isSurface(id_cell, m_Grid)) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { if (m_SurfNode[pts[i]] && m_BoundaryCodes.contains(bc->GetValue(id_cell))) { n2bc[pts[i]].insert(bc->GetValue(id_cell)); } @@ -713,8 +705,7 @@ void GridSmoother::computeHeights() done = true; for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (isSurface(id_cell, m_Grid)) { - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, m_Grid); bool check_face = true; for (vtkIdType i = 0; i < num_pts; ++i) { if (!m_SurfNode[pts[i]]) { @@ -821,8 +812,7 @@ void GridSmoother::computeFeet() m_IdFoot.fill(-1, m_Grid->GetNumberOfPoints()); for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (m_Grid->GetCellType(id_cell) == VTK_WEDGE) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); m_IdFoot[pts[3]] = pts[0]; m_IdFoot[pts[4]] = pts[1]; m_IdFoot[pts[5]] = pts[2]; @@ -929,17 +919,15 @@ void GridSmoother::writeDebugFile(QString file_name) int N = 0; for (int i = 0; i < bpart.getNumberOfCells(); ++ i) { vtkIdType id_cell = bpart.globalCell(i); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - N += 1 + N_pts; + EG_GET_CELL(id_cell, m_Grid); + N += 1 + num_pts; } f << N << "\n"; for (int i = 0; i < bpart.getNumberOfCells(); ++ i) { vtkIdType id_cell = bpart.globalCell(i); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - f << N_pts; - for (int j = 0; j < N_pts; ++j) { + EG_GET_CELL(id_cell, m_Grid); + f << num_pts; + for (int j = 0; j < num_pts; ++j) { f << " " << bpart.localNode(pts[j]); } f << "\n"; diff --git a/src/libengrid/guicreateboundarylayer.cpp b/src/libengrid/guicreateboundarylayer.cpp index 7a4b50f2..e22dd7b8 100644 --- a/src/libengrid/guicreateboundarylayer.cpp +++ b/src/libengrid/guicreateboundarylayer.cpp @@ -311,9 +311,8 @@ void GuiCreateBoundaryLayer::operate() node_layer->SetValue(id_node, -1); } foreach (vtkIdType id_cell, layer_cells) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + EG_GET_CELL(id_cell, m_Grid); + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { node_layer->SetValue(pts[i_pts], 0); } } diff --git a/src/libengrid/guideletebadaspecttris.cpp b/src/libengrid/guideletebadaspecttris.cpp index 03f53d2c..dab2c710 100644 --- a/src/libengrid/guideletebadaspecttris.cpp +++ b/src/libengrid/guideletebadaspecttris.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "guideletebadaspecttris.h" +#include "engrid.h" void GuiDeleteBadAspectTris::operate() { @@ -29,8 +30,7 @@ void GuiDeleteBadAspectTris::operate() if (isVolume(id_cell,m_Grid)) EG_ERR_RETURN("The grid contains volume cells"); vtkIdType type_cell = m_Grid->GetCellType(id_cell); if (type_cell == VTK_TRIANGLE) { - vtkIdType *pts, N_pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); vec3_t x[3]; for (int i = 0; i < 3; ++i) { m_Grid->GetPoint(pts[i], x[i].data()); @@ -57,10 +57,8 @@ void GuiDeleteBadAspectTris::operate() copyNodeData(m_Grid, id_node, new_grid, id_node); }; foreach (vtkIdType id_cell, new_cells) { - vtkIdType *pts, N_pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - vtkIdType type_cell = m_Grid->GetCellType(id_cell); - vtkIdType id_new_cell = new_grid->InsertNextCell(type_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); + vtkIdType id_new_cell = new_grid->InsertNextCell(type_cell, ptIds); copyCellData(m_Grid, id_cell, new_grid, id_new_cell); }; makeCopy(new_grid,m_Grid); diff --git a/src/libengrid/guidivideboundarylayer.cpp b/src/libengrid/guidivideboundarylayer.cpp index 706e2cd4..afa33475 100644 --- a/src/libengrid/guidivideboundarylayer.cpp +++ b/src/libengrid/guidivideboundarylayer.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "guidivideboundarylayer.h" +#include "engrid.h" #include "math/linsolve.h" #include "volumedefinition.h" @@ -84,8 +85,7 @@ bool GuiDivideBoundaryLayer::findBoundaryLayer() for (int i_cells = 0; i_cells < cells.size(); ++i_cells) { if (m_Grid->GetCellType(cells[i_cells]) == VTK_WEDGE) { ++m_NumPrisms; - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(cells[i_cells],N_pts,pts); + EG_GET_CELL(cells[i_cells], m_Grid); for (int j = 0; j < 3; ++j) { m_Pairs.insert(QPair(pts[j],pts[j+3])); } @@ -371,8 +371,7 @@ void GuiDivideBoundaryLayer::operate() } vtkIdType id_new_cell; for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); bool insert_cell = true; if (m_Grid->GetCellType(id_cell) == VTK_WEDGE) { insert_cell = false; @@ -393,7 +392,7 @@ void GuiDivideBoundaryLayer::operate() curdir = old_curdir->GetValue(id_cell); } if (insert_cell) { - id_new_cell = new_grid->InsertNextCell(m_Grid->GetCellType(id_cell), N_pts, pts); + id_new_cell = new_grid->InsertNextCell(m_Grid->GetCellType(id_cell), ptIds); copyCellData(m_Grid, id_cell, new_grid, id_new_cell); } } @@ -403,8 +402,7 @@ void GuiDivideBoundaryLayer::operate() for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (m_Grid->GetCellType(id_cell) == VTK_WEDGE) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); for (int i = 0; i < m_NumLayers; ++i) { vtkIdType p[6]; p[0] = m_Edges[m_Old2Edge[pts[0]]][i]; @@ -418,8 +416,7 @@ void GuiDivideBoundaryLayer::operate() } } if (m_Grid->GetCellType(id_cell) == VTK_QUAD) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); if ((m_Old2Edge[pts[0]] != -1) && (m_Old2Edge[pts[1]] != -1) && (m_Old2Edge[pts[2]] != -1) && (m_Old2Edge[pts[3]] != -1)) { for (int i = 0; i < m_NumLayers; ++i) { vtkIdType p[4]; diff --git a/src/libengrid/guimainwindow.cpp b/src/libengrid/guimainwindow.cpp index 40620541..8b8caff1 100755 --- a/src/libengrid/guimainwindow.cpp +++ b/src/libengrid/guimainwindow.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "guimainwindow.h" +#include "engrid.h" #include "guiselectboundarycodes.h" #include "guiimproveaspectratio.h" #include "guinormalextrusion.h" @@ -39,6 +40,7 @@ #include "triangularcadinterface.h" #include "cgaltricadinterface.h" +#include #include #include #include @@ -53,11 +55,15 @@ #include #include #include +#include #include #include #include #include +#include +#include + #include #include @@ -76,6 +82,8 @@ using namespace GeometryTools; #include "showinfo.h" #include "engrid_version.h" +#include + QString GuiMainWindow::m_cwd = "."; QSettings GuiMainWindow::m_qset("enGits", QString("enGrid-") + ENGRID_VERSION_STRING); GuiMainWindow* GuiMainWindow::THIS = NULL; @@ -190,9 +198,9 @@ void GuiMainWindow::setupGuiMainWindow() ui.doubleSpinBox_HueMin->setValue(0.667); ui.doubleSpinBox_HueMax->setValue(0); - egvtkInteractorStyle *style = egvtkInteractorStyle::New(); - getInteractor()->SetInteractorStyle(style); - style->Delete(); + // egvtkInteractorStyle *style = egvtkInteractorStyle::New(); + // getInteractor()->SetInteractorStyle(style); + // style->Delete(); // initialise XML document m_XmlHandler = new XmlHandler("engridcase"); @@ -453,6 +461,26 @@ void GuiMainWindow::setupVtk() m_PickedObject = 0; viewFront(); + + // Create a new QVTKInteractor instance + //vtkSmartPointer interactor = vtkSmartPointer::New(); + + // Set the interactor for your QVTKOpenGLNativeWidget or QVTKOpenGLStereoWidget + //ui.centralwidget->GetRenderWindow()->SetInteractor(interactor); + + // Initialize the interactor + //interactor->Initialize(); + + // Render the scene + //ui.myVtkWidget->GetRenderWindow()->Render(); + + + // ui.centralwidget->setFocusPolicy(Qt::StrongFocus); + // vtkSmartPointer interactor = ui.centralwidget->GetInteractor(); + // interactor->Initialize(); + //interactor->Start(); + + } void GuiMainWindow::updateOutput() @@ -476,7 +504,7 @@ void GuiMainWindow::exit() vtkRenderWindow* GuiMainWindow::getRenderWindow() { - return ui.qvtkWidget->GetRenderWindow(); + return ui.centralwidget->GetRenderWindow(); } vtkRenderer* GuiMainWindow::getRenderer() @@ -486,7 +514,7 @@ vtkRenderer* GuiMainWindow::getRenderer() QVTKInteractor* GuiMainWindow::getInteractor() { - return ui.qvtkWidget->GetInteractor(); + return ui.centralwidget->GetInteractor(); } QString GuiMainWindow::getCwd() @@ -814,17 +842,16 @@ bool GuiMainWindow::pickPoint(vtkIdType id_node) bool GuiMainWindow::pickCell(vtkIdType id_cell) { if ((id_cell >= 0) && (id_cell < m_Grid->GetNumberOfCells())) { - vtkIdType *pts, Npts; - m_Grid->GetCellPoints(id_cell, Npts, pts); + EG_GET_CELL(id_cell, m_Grid); vec3_t x(0,0,0); - for (vtkIdType i = 0; i < Npts; ++i) { + for (vtkIdType i = 0; i < num_pts; ++i) { vec3_t xp; m_Grid->GetPoints()->GetPoint(pts[i], xp.data()); - x += double(1)/Npts * xp; + x += double(1)/num_pts * xp; } m_PickSphere->SetCenter(x.data()); double R = 1e99; - for (vtkIdType i = 0; i < Npts; ++i) { + for (vtkIdType i = 0; i < num_pts; ++i) { vec3_t xp; m_Grid->GetPoints()->GetPoint(pts[i], xp.data()); R = min(R, 0.25*(xp-x).abs()); @@ -1317,7 +1344,7 @@ void GuiMainWindow::updateStatusBar() if (id_cell < 0 || id_cell>=m_Grid->GetNumberOfCells()) { pick_txt += "no cell picked"; } else { - vtkIdType type_cell = m_Grid->GetCellType(id_cell); + EG_GET_CELL(id_cell, m_Grid); if (type_cell == VTK_TRIANGLE) pick_txt += "tri"; else if (type_cell == VTK_QUAD) pick_txt += "qua"; else if (type_cell == VTK_POLYGON) pick_txt += "plg"; @@ -1326,14 +1353,12 @@ void GuiMainWindow::updateStatusBar() else if (type_cell == VTK_WEDGE) pick_txt += "pri"; else if (type_cell == VTK_HEXAHEDRON) pick_txt += "hex"; else if (type_cell == VTK_POLYHEDRON) pick_txt += "pol"; - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); pick_txt += " ["; - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { QString num; num.setNum(pts[i_pts]); pick_txt += num; - if (i_pts < N_pts-1) { + if (i_pts < num_pts-1) { pick_txt += ","; } } @@ -1522,16 +1547,15 @@ void GuiMainWindow::viewCellIDs() m_CellTextFollower[id_cell]=vtkFollower::New(); m_CellTextFollower[id_cell]->SetMapper(m_CellTextPolyDataMapper[id_cell]); m_CellTextFollower[id_cell]->SetScale(m_ReferenceSize, m_ReferenceSize, m_ReferenceSize); - vtkIdType N_pts,*pts; - m_Grid->GetCellPoints(id_cell,N_pts,pts); + EG_GET_CELL(id_cell, m_Grid); vec3_t Center(0,0,0); - for (int p = 0; p < N_pts; ++p) { + for (int p = 0; p < num_pts; ++p) { vec3_t M; m_Grid->GetPoint(pts[p],M.data()); Center+=M.data(); } vec3_t OffSet = m_ReferenceSize*triNormal(m_Grid, pts[0], pts[1], pts[2]).normalise(); - Center = 1.0/(double)N_pts*Center+OffSet; + Center = 1.0/(double)num_pts*Center+OffSet; m_CellTextFollower[id_cell]->AddPosition(Center[0], Center[1], Center[2]); m_CellTextFollower[id_cell]->SetCamera(getRenderer()->GetActiveCamera()); m_CellTextFollower[id_cell]->GetProperty()->SetColor(1, 0, 0); @@ -1616,11 +1640,10 @@ vtkIdType GuiMainWindow::getPickedPoint() void GuiMainWindow::changeSurfaceOrientation() { for (vtkIdType cellId = 0; cellId < m_Grid->GetNumberOfCells(); ++cellId) { - vtkIdType Npts, *pts; - m_Grid->GetCellPoints(cellId, Npts, pts); - QVector nodes(Npts); - for (vtkIdType j = 0; j < Npts; ++j) nodes[j] = pts[j]; - for (vtkIdType j = 0; j < Npts; ++j) pts[Npts - j - 1] = nodes[j]; + EG_GET_CELL(cellId, m_Grid); + QVector nodes(num_pts); + for (vtkIdType j = 0; j < num_pts; ++j) nodes[j] = pts[j]; + for (vtkIdType j = 0; j < num_pts; ++j) pts[num_pts - j - 1] = nodes[j]; } updateActors(); m_Grid->Modified();// to make sure VTK notices the changes and changes the cell colors @@ -2211,14 +2234,11 @@ void GuiMainWindow::callMergeNodes() } for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { - vtkIdType N_pts, *pts; - vtkIdType type_cell = m_Grid->GetCellType(id_cell); - m_Grid->GetCellPoints(id_cell, N_pts, pts); - QVector new_pts(N_pts); - for (int i = 0; i < N_pts; ++i) { - new_pts[i] = old2new_nodes[pts[i]]; + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { + ptIds->SetId(i, old2new_nodes[pts[i]]); } - vtkIdType id_new_cell = new_grid->InsertNextCell(type_cell, N_pts, new_pts.data()); + vtkIdType id_new_cell = new_grid->InsertNextCell(type_cell, ptIds); copyCellData(m_Grid, id_cell, new_grid, id_new_cell); } diff --git a/src/libengrid/guimainwindow.h b/src/libengrid/guimainwindow.h index 04ad7112..d45a8fd1 100644 --- a/src/libengrid/guimainwindow.h +++ b/src/libengrid/guimainwindow.h @@ -81,6 +81,8 @@ #include "fixcadgeometry.h" #include "xmlhandler.h" +#include + /** * This is the main GUI class of enGrid. */ diff --git a/src/libengrid/guimainwindow.ui b/src/libengrid/guimainwindow.ui index e217e493..550285a2 100755 --- a/src/libengrid/guimainwindow.ui +++ b/src/libengrid/guimainwindow.ui @@ -17,22 +17,14 @@ :/icons/resources/icons/G.png:/icons/resources/icons/G.png - - - - - - - 0 - 0 - - - - ArrowCursor - - - - + + + CrossCursor + + + true + + @@ -40,7 +32,7 @@ 0 0 1063 - 17 + 34 @@ -309,8 +301,8 @@ 0 0 - 221 - 495 + 249 + 710 @@ -701,8 +693,8 @@ 0 0 - 221 - 484 + 270 + 728 @@ -1802,9 +1794,10 @@ - QVTKWidget + QVTKOpenGLNativeWidget QWidget -
QVTKWidget.h
+
QVTKOpenGLNativeWidget.h
+ 1
diff --git a/src/libengrid/guimirrormesh.cpp b/src/libengrid/guimirrormesh.cpp index be6e5211..b05ecdb9 100644 --- a/src/libengrid/guimirrormesh.cpp +++ b/src/libengrid/guimirrormesh.cpp @@ -19,7 +19,10 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "guimirrormesh.h" +#include "engrid.h" #include "guimainwindow.h" +#include +#include void GuiMirrorMesh::operate() { @@ -43,37 +46,36 @@ void GuiMirrorMesh::operate() } vtkIdType id_new_cell; for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - QVector new_pts(N_pts); - vtkIdType cell_type = m_Grid->GetCellType(id_cell); - if (cell_type == VTK_TETRA) { - new_pts[0] = pts[0]; - new_pts[1] = pts[1]; - new_pts[2] = pts[3]; - new_pts[3] = pts[2]; - id_new_cell = mirror_grid->InsertNextCell(m_Grid->GetCellType(id_cell), N_pts, new_pts.data()); - } else if (cell_type == VTK_WEDGE) { - new_pts[0] = pts[3]; - new_pts[1] = pts[4]; - new_pts[2] = pts[5]; - new_pts[3] = pts[0]; - new_pts[4] = pts[1]; - new_pts[5] = pts[2]; - id_new_cell = mirror_grid->InsertNextCell(m_Grid->GetCellType(id_cell), N_pts, new_pts.data()); - } else if (cell_type == VTK_HEXAHEDRON) { - new_pts[0] = pts[4]; - new_pts[1] = pts[5]; - new_pts[2] = pts[6]; - new_pts[3] = pts[7]; - new_pts[4] = pts[0]; - new_pts[5] = pts[1]; - new_pts[6] = pts[2]; - new_pts[7] = pts[3]; - id_new_cell = mirror_grid->InsertNextCell(m_Grid->GetCellType(id_cell), N_pts, new_pts.data()); - } else if (cell_type == VTK_PYRAMID) { + EG_GET_CELL(id_cell, m_Grid); + vtkSmartPointer new_pts = vtkSmartPointer::New(); + new_pts->SetNumberOfIds(num_pts); + if (type_cell == VTK_TETRA) { + new_pts->SetId(0, pts[0]); + new_pts->SetId(1, pts[1]); + new_pts->SetId(2, pts[3]); + new_pts->SetId(3, pts[2]); + id_new_cell = mirror_grid->InsertNextCell(type_cell, new_pts); + } else if (type_cell == VTK_WEDGE) { + new_pts->SetId(0, pts[3]); + new_pts->SetId(1, pts[4]); + new_pts->SetId(2, pts[5]); + new_pts->SetId(3, pts[0]); + new_pts->SetId(4, pts[1]); + new_pts->SetId(5, pts[2]); + id_new_cell = mirror_grid->InsertNextCell(type_cell, new_pts); + } else if (type_cell == VTK_HEXAHEDRON) { + new_pts->SetId(0, pts[4]); + new_pts->SetId(1, pts[5]); + new_pts->SetId(2, pts[6]); + new_pts->SetId(3, pts[7]); + new_pts->SetId(4, pts[0]); + new_pts->SetId(5, pts[1]); + new_pts->SetId(6, pts[2]); + new_pts->SetId(7, pts[3]); + id_new_cell = mirror_grid->InsertNextCell(type_cell, new_pts); + } else if (type_cell == VTK_PYRAMID) { EG_BUG; - } else if (cell_type == VTK_POLYHEDRON) { + } else if (type_cell == VTK_POLYHEDRON) { QVector > faces(m_Part.c2cGSize(id_cell)); int stream_length = 1; for (int i = 0; i < m_Part.c2cGSize(id_cell); ++i) { @@ -94,10 +96,10 @@ void GuiMirrorMesh::operate() } id_new_cell = mirror_grid->InsertNextCell(VTK_POLYHEDRON, stream); } else { - for (int i = 0; i < N_pts; ++i) { - new_pts[i] = pts[N_pts - i - 1]; + for (int i = 0; i < num_pts; ++i) { + new_pts->SetId(i, num_pts - i - 1); } - id_new_cell = mirror_grid->InsertNextCell(m_Grid->GetCellType(id_cell), N_pts, new_pts.data()); + id_new_cell = mirror_grid->InsertNextCell(type_cell, new_pts); } copyCellData(m_Grid, id_cell, mirror_grid, id_new_cell); } diff --git a/src/libengrid/guisettingstab.cpp b/src/libengrid/guisettingstab.cpp index fc975e86..2b5d3554 100644 --- a/src/libengrid/guisettingstab.cpp +++ b/src/libengrid/guisettingstab.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "guisettingstab.h" #include + #include #include diff --git a/src/libengrid/guisettingstab.h b/src/libengrid/guisettingstab.h index 2d83381b..a4275653 100644 --- a/src/libengrid/guisettingstab.h +++ b/src/libengrid/guisettingstab.h @@ -25,6 +25,9 @@ #include #include #include +#include +#include + #include "dialoglineedit.h" ///\todo fix problems with more than one boolean + general tab stuff diff --git a/src/libengrid/guisettingsviewer.cpp b/src/libengrid/guisettingsviewer.cpp index 5b6ebdbe..4d0a940d 100644 --- a/src/libengrid/guisettingsviewer.cpp +++ b/src/libengrid/guisettingsviewer.cpp @@ -24,6 +24,10 @@ #include "guisettingstab.h" #include +#include +#include +#include + #include /* Here is how we we get QTextStreams that look like iostreams */ diff --git a/src/libengrid/guisettingsviewer.h b/src/libengrid/guisettingsviewer.h index 48f27319..0873c44e 100644 --- a/src/libengrid/guisettingsviewer.h +++ b/src/libengrid/guisettingsviewer.h @@ -23,6 +23,7 @@ #include #include +#include #include "guisettingstab.h" diff --git a/src/libengrid/insertpoints.cpp b/src/libengrid/insertpoints.cpp index 4a81fdd2..fdd3d158 100644 --- a/src/libengrid/insertpoints.cpp +++ b/src/libengrid/insertpoints.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "insertpoints.h" +#include "engrid.h" #include "guimainwindow.h" #include @@ -67,8 +68,7 @@ int InsertPoints::insertPoints() if (m_BoundaryCodes.contains(cell_code->GetValue(id_cell)) && (m_Grid->GetCellType(id_cell) == VTK_TRIANGLE)) { int j_split = -1; double L_max = 0; - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); //find best side to split (longest) for (int j = 0; j < 3; ++j) { @@ -85,7 +85,7 @@ int InsertPoints::insertPoints() if (selected_edge) { vtkIdType id_node1 = pts[j]; - vtkIdType id_node2 = pts[(j+1)%N_pts]; + vtkIdType id_node2 = pts[(j+1)%num_pts]; double L = distance(m_Grid, id_node1, id_node2); double L1 = characteristic_length_desired->GetValue(id_node1); double L2 = characteristic_length_desired->GetValue(id_node2); @@ -168,13 +168,12 @@ int InsertPoints::insertPoints() QVector< QVector > pts_triangle(2*N,QVector(3)); for(int i_triangle = 0; i_triangle < N; i_triangle++) { - vtkIdType *pts, N_pts; - grid_tmp->GetCellPoints(S.id_cell[i_triangle], N_pts, pts); + EG_GET_CELL(S.id_cell[i_triangle], grid_tmp); bool direct; - for(int i_pts = 0; i_pts < N_pts; i_pts++) { + for(int i_pts = 0; i_pts < num_pts; i_pts++) { if (pts[i_pts] == S.p1 ) { - if (pts[(i_pts+1)%N_pts] == S.p2 ) { + if (pts[(i_pts+1)%num_pts] == S.p2 ) { direct = true; } else { direct = false; @@ -200,7 +199,9 @@ int InsertPoints::insertPoints() } grid_tmp->ReplaceCell(S.id_cell[i_triangle] , 3, pts_triangle[i_triangle].data()); - vtkIdType newCellId = grid_tmp->InsertNextCell(VTK_TRIANGLE,3,pts_triangle[i_triangle+N].data()); + auto new_pts = idListFromVector(pts_triangle[i_triangle]); + vtkIdType newCellId = grid_tmp->InsertNextCell(VTK_TRIANGLE, new_pts); + //vtkIdType newCellId = grid_tmp->InsertNextCell(VTK_TRIANGLE,3,pts_triangle[i_triangle+N].data()); copyCellData(grid_tmp,S.id_cell[i_triangle],grid_tmp,newCellId); } diff --git a/src/libengrid/meshpartition.cpp b/src/libengrid/meshpartition.cpp index 615aa026..df0932b1 100644 --- a/src/libengrid/meshpartition.cpp +++ b/src/libengrid/meshpartition.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "meshpartition.h" +#include "engrid.h" #include "guimainwindow.h" #include @@ -304,11 +305,9 @@ double MeshPartition::getSmallestEdgeLength() const { double L = 1e99; foreach (vtkIdType id_cell, m_Cells) { - vtkIdType type_cell = m_Grid->GetCellType(id_cell); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - QVector x(N_pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + QVector x(num_pts); + for (int i = 0; i < num_pts; ++i) { m_Grid->GetPoint(pts[i], x[i].data()); } if (type_cell == VTK_TRIANGLE) { @@ -423,18 +422,17 @@ vec3_t MeshPartition::globalNormal(vtkIdType id_node) for (int i = 0; i < n2cGSize(id_node); ++i) { vtkIdType id_cell = n2cGG(id_node, i); if (isSurface(id_cell, m_Grid)) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); vec3_t a, b, c; - for (int j = 0; j < N_pts; ++j) { + for (int j = 0; j < num_pts; ++j) { if (pts[j] == id_node) { m_Grid->GetPoint(pts[j], a.data()); if (j > 0) { m_Grid->GetPoint(pts[j-1], b.data()); } else { - m_Grid->GetPoint(pts[N_pts-1], b.data()); + m_Grid->GetPoint(pts[num_pts - 1], b.data()); } - if (j < N_pts - 1) { + if (j < num_pts - 1) { m_Grid->GetPoint(pts[j+1], c.data()); } else { m_Grid->GetPoint(pts[0], c.data()); @@ -489,8 +487,7 @@ void MeshPartition::computeMinAndMaxSurfaceStencilEdgeLengths(vtkIdType id_node, for (int i = 0; i < n2cGSize(id_node); ++i) { vtkIdType id_cell = n2cGG(id_node, i); if (isSurface(id_cell, m_Grid)) { - vtkIdType *pts, num_pts; - m_Grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, m_Grid); vec3_t x1, x2; m_Grid->GetPoint(pts[num_pts - 1], x1.data()); for (int j = 0; j < num_pts; ++j) { @@ -582,14 +579,17 @@ void MeshPartition::getCommonNodes(vtkIdType id_cell1, vtkIdType id_cell2, QVect { common_nodes.clear(); QSet nodes1, nodes2; - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_cell1, num_pts, pts); - for (int i = 0; i < num_pts; ++i) { - nodes1.insert(pts[i]); + { + EG_GET_CELL(id_cell1, m_Grid); + for (int i = 0; i < num_pts; ++i) { + nodes1.insert(pts[i]); + } } - m_Grid->GetCellPoints(id_cell2, num_pts, pts); - for (int i = 0; i < num_pts; ++i) { - nodes2.insert(pts[i]); + { + EG_GET_CELL(id_cell2, m_Grid); + for (int i = 0; i < num_pts; ++i) { + nodes2.insert(pts[i]); + } } nodes1.intersect(nodes2); common_nodes.resize(nodes1.size()); @@ -686,8 +686,7 @@ void MeshPartition::calcPlanarSurfaceMetrics(double &Dh, double &A, double &P, v P = 0; foreach (vtkIdType id_cell, m_Cells) { if (isSurface(id_cell, m_Grid)) { - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, m_Grid); QVector x_pt(num_pts + 1); for (int i = 0; i < num_pts; ++i) { m_Grid->GetPoint(pts[i], x_pt[i].data()); diff --git a/src/libengrid/meshpartition.h b/src/libengrid/meshpartition.h index a39d0695..362044e1 100644 --- a/src/libengrid/meshpartition.h +++ b/src/libengrid/meshpartition.h @@ -420,10 +420,9 @@ inline void MeshPartition::setNodes(const C& nds) node_inside[id_node] = true; } for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); bool append_cell = true; - for (int i = 0; i < N_pts; ++i) { + for (int i = 0; i < num_pts; ++i) { if (!node_inside[pts[i]]) { append_cell = false; break; @@ -769,8 +768,7 @@ void MeshPartition::getEdgeFaces(vtkIdType id_node1, vtkIdType id_node2, C &edge for (int i = 0; i < n2cGSize(id_node1); ++i) { vtkIdType id_cell = n2cGG(id_node1, i); if (isSurface(id_cell, m_Grid)) { - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, m_Grid); for (int j = 0; j < num_pts; ++j) { if (pts[j] == id_node2) { edge_faces << id_cell; diff --git a/src/libengrid/meshqualityfaceorientation.cpp b/src/libengrid/meshqualityfaceorientation.cpp index f41afa92..c28c3a19 100644 --- a/src/libengrid/meshqualityfaceorientation.cpp +++ b/src/libengrid/meshqualityfaceorientation.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "meshqualityfaceorientation.h" +#include "engrid.h" #include "geometrytools.h" #include "guimainwindow.h" @@ -37,8 +38,7 @@ void MeshQualityFaceOrientation::operate() if (cad_interface->shootRayAvailable()) { cad_interface->project(x_face, n_face); } else { - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, m_Grid); cad_interface->snapNode(pts[0], x_face); } if (cad_interface->failed()) { diff --git a/src/libengrid/multipagewidget.cpp b/src/libengrid/multipagewidget.cpp index 1550f521..adf0b592 100644 --- a/src/libengrid/multipagewidget.cpp +++ b/src/libengrid/multipagewidget.cpp @@ -60,6 +60,9 @@ ****************************************************************************/ #include +#include +#include +#include #include "multipagewidget.h" diff --git a/src/libengrid/neutralwriter.cpp b/src/libengrid/neutralwriter.cpp index 9a9cb71f..38e88cc9 100644 --- a/src/libengrid/neutralwriter.cpp +++ b/src/libengrid/neutralwriter.cpp @@ -59,8 +59,7 @@ void NeutralWriter::operate() f << Nvol << "\n"; for (vtkIdType cellId = 0; cellId < m_Grid->GetNumberOfCells(); ++cellId) { if (!isSurface(cellId, m_Grid)) { - vtkIdType Npts, *pts; - m_Grid->GetCellPoints(cellId, Npts, pts); + EG_GET_CELL(cellId, m_Grid); f << "1 " << pts[0]+1 << " " << pts[1]+1 << " " << pts[3]+1 << " " << pts[2]+1 << "\n"; }; }; @@ -68,8 +67,7 @@ void NeutralWriter::operate() EG_VTKDCC(vtkIntArray, cell_code, m_Grid, "cell_code"); for (vtkIdType cellId = 0; cellId < m_Grid->GetNumberOfCells(); ++cellId) { if (isSurface(cellId, m_Grid)) { - vtkIdType Npts, *pts; - m_Grid->GetCellPoints(cellId, Npts, pts); + EG_GET_CELL(cellId, m_Grid); f << 1;//cell_code->GetValue(cellId); f << " " << pts[2]+1 << " " << pts[1]+1 << " " << pts[0]+1 << "\n"; }; diff --git a/src/libengrid/operation.cpp b/src/libengrid/operation.cpp index 6177c569..06668859 100644 --- a/src/libengrid/operation.cpp +++ b/src/libengrid/operation.cpp @@ -242,10 +242,9 @@ void Operation::eliminateDuplicateCells(bool surf_only) for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (!surf_only || isSurface(id_cell, m_Grid)) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - QVector nodes(N_pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + QVector nodes(num_pts); + for (int i = 0; i < num_pts; ++i) { nodes[i] = pts[i]; } qSort(nodes); @@ -256,9 +255,8 @@ void Operation::eliminateDuplicateCells(bool surf_only) for (vtkIdType id_cell1 = 0; id_cell1 < m_Grid->GetNumberOfCells(); ++id_cell1) { bool duplicate_cell = false; if (!surf_only || isSurface(id_cell1, m_Grid)) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell1, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell1, m_Grid); + for (int i = 0; i < num_pts; ++i) { for (int j = 0; j < m_Part.n2cGSize(pts[i]); ++j) { vtkIdType id_cell2 = m_Part.n2cGG(pts[i], j); if (id_cell1 != id_cell2) { diff --git a/src/libengrid/polymesh.cpp b/src/libengrid/polymesh.cpp index 31d498c9..acfde0b4 100644 --- a/src/libengrid/polymesh.cpp +++ b/src/libengrid/polymesh.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "polymesh.h" +#include "engrid.h" #include "polymolecule.h" #include "guimainwindow.h" @@ -454,8 +455,7 @@ void PolyMesh::splitConcaveFaces() void PolyMesh::getFacesOfEdgeInsideCell(vtkIdType id_cell, vtkIdType id_node1, vtkIdType id_node2, int &face1, int &face2) { - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, m_Grid); face1 = -1; face2 = -1; @@ -712,8 +712,7 @@ void PolyMesh::createCornerFace(vtkIdType id_cell, int i_face, vtkIdType id_node QList edge_nodes; QVector face_nodes; getFaceOfCell(m_Grid, id_cell, i_face, face_nodes); - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, m_Grid); for (int i = 0; i < m_Part.n2nGSize(id_node); ++i) { vtkIdType id_neigh = m_Part.n2nGG(id_node, i); if (face_nodes.contains(id_neigh)) { @@ -897,8 +896,7 @@ void PolyMesh::createPointFace(vtkIdType id_node, int bc) } foreach (vtkIdType id_face, faces) { node_t node; - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_face, num_pts, pts); + EG_GET_CELL(id_face, m_Grid); node.id.resize(num_pts); for (int i_pts = 0; i_pts < num_pts; ++i_pts) { node.id[i_pts] = pts[i_pts]; @@ -913,8 +911,7 @@ void PolyMesh::createPointFace(vtkIdType id_node, int bc) vtkIdType id_face = faces.last(); while (id_face != -1) { bool found = false; - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_face, num_pts, pts); + EG_GET_CELL(id_face, m_Grid); QList id_neigh_node; vtkIdType id_neigh = -1; for (int i = 0; i < m_Part.c2cGSize(id_face); ++i) { diff --git a/src/libengrid/reducedpolydatareader.cpp b/src/libengrid/reducedpolydatareader.cpp index a6e2f6c6..c7facae7 100644 --- a/src/libengrid/reducedpolydatareader.cpp +++ b/src/libengrid/reducedpolydatareader.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "reducedpolydatareader.h" +#include "engrid.h" #include "guimainwindow.h" #include "octree.h" @@ -47,9 +48,8 @@ void ReducedPolyDataReader::computeLevelSet(vtkUnstructuredGrid* m_Grid, vtkPoly poly->BuildCells(); QVector triangles(poly->GetNumberOfPolys()); for (vtkIdType id_poly = 0; id_poly < poly->GetNumberOfPolys(); ++id_poly) { - vtkIdType Npts, *pts; - poly->GetCellPoints(id_poly, Npts, pts); - if (Npts == 3) { + EG_GET_CELL(id_poly, poly); + if (num_pts == 3) { poly->GetPoint(pts[0], triangles[id_poly].a.data()); poly->GetPoint(pts[1], triangles[id_poly].b.data()); poly->GetPoint(pts[2], triangles[id_poly].c.data()); diff --git a/src/libengrid/removepoints.cpp b/src/libengrid/removepoints.cpp index 013bd1ee..45a914b7 100644 --- a/src/libengrid/removepoints.cpp +++ b/src/libengrid/removepoints.cpp @@ -22,6 +22,7 @@ #include "checksurfaceintegrity.h" +#include "engrid.h" #include "geometrytools.h" using namespace GeometryTools; @@ -268,9 +269,8 @@ bool RemovePoints::checkForDestroyedVolumes(vtkIdType id_node1, vtkIdType id_nod QSet far_faces = all_faces - near_faces; bool tetra = true; foreach (vtkIdType id_cell, far_faces) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + for (int i = 0; i < num_pts; ++i) { if (!m_Part.hasNeighNode(pts[i], id_node1) && !m_Part.hasNeighNode(pts[i], id_node2)) { tetra = false; break; @@ -372,8 +372,7 @@ int RemovePoints::numberOfCommonPoints(vtkIdType id_node1, vtkIdType id_node2, b qcontIntersection(S1, S2, Si); int counter = 0; foreach(int i_cell, Si) { - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(cells[i_cell], num_pts, pts); + EG_GET_CELL(cells[i_cell], m_Grid); for(int i = 0; i < num_pts; ++i) { if(pts[i] == id_node1 || pts[i] == id_node2) counter++; } @@ -471,12 +470,11 @@ bool RemovePoints::flippedCell(vtkIdType id_node, vec3_t x_new, vtkIdType id_cel } vec3_t x_summit = x_old + L_max * n; vec3_t x[3]; - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - if(N_pts != 3) { + EG_GET_CELL(id_cell, m_Grid); + if (num_pts != 3) { EG_BUG; } - for(int j = 0; j < N_pts; ++j) { + for (int j = 0; j < num_pts; ++j) { m_Grid->GetPoint(pts[j], x[j].data()); } if(GeometryTools::tetraVol(x[0], x[1], x[2], x_summit, false) <= 0) { @@ -708,11 +706,8 @@ bool RemovePoints::deleteSetOfPoints(const QVector& deadnode_vector, // if(isVolume(id_cell, m_Grid)) continue; if(!is_deadcell[id_cell]) { //if the cell isn't dead - vtkIdType src_num_pts, *src_pts; - m_Grid->GetCellPoints(id_cell, src_num_pts, src_pts); - vtkIdType type_cell = m_Grid->GetCellType(id_cell); - - vtkIdType dst_num_pts = src_num_pts; + EG_GET_CELL(id_cell, m_Grid); + vtkIdType dst_num_pts = num_pts; QVector dst_pts(dst_num_pts); if(is_mutatedcell[id_cell]) { //mutated cell @@ -723,13 +718,13 @@ bool RemovePoints::deleteSetOfPoints(const QVector& deadnode_vector, EG_BUG; } int num_deadnode = 0; - for(int i = 0; i < src_num_pts; i++) { - int DeadIndex = glob2dead[src_pts[i]]; + for (int i = 0; i < num_pts; i++) { + int DeadIndex = glob2dead[pts[i]]; if(DeadIndex != -1) { // It is a dead node. dst_pts[i] = snappoint_vector[DeadIndex] - OffSet[snappoint_vector[DeadIndex]]; // dead node num_deadnode++; } else { - dst_pts[i] = src_pts[i] - OffSet[src_pts[i]]; // not a dead node + dst_pts[i] = pts[i] - OffSet[pts[i]]; // not a dead node } } if(num_deadnode != 1) { @@ -746,37 +741,38 @@ bool RemovePoints::deleteSetOfPoints(const QVector& deadnode_vector, if(isVolume(id_cell, m_Grid)) { int num_deadnode = 0; - for(int i = 0; i < src_num_pts; i++) { - int DeadIndex = glob2dead[src_pts[i]]; + for (int i = 0; i < num_pts; i++) { + int DeadIndex = glob2dead[pts[i]]; if(DeadIndex != -1) { // It is a dead node. dst_pts[i] = snappoint_vector[DeadIndex] - OffSet[snappoint_vector[DeadIndex]]; // dead node num_deadnode++; } else { - dst_pts[i] = src_pts[i] - OffSet[src_pts[i]]; // not a dead node + dst_pts[i] = pts[i] - OffSet[pts[i]]; // not a dead node } } if(num_deadnode > 1) { qWarning() << "FATAL ERROR: Mutated cell has more than one dead node!"; qWarning() << "num_deadnode=" << num_deadnode; qWarning() << "type_cell=" << type_cell << " VTK_TRIANGLE=" << VTK_TRIANGLE << " VTK_QUAD=" << VTK_QUAD; - for(int k = 0; k < src_num_pts; k++) { - int DeadIndex = glob2dead[src_pts[k]]; - qWarning()<<"k="< SeedSimplePrismaticLayer::SeedSimplePrismaticLayer() @@ -51,15 +52,12 @@ void SeedSimplePrismaticLayer::prepareLayer() QSet new_points; for (int i_layer_cell = 0; i_layer_cell < layer_cells.size(); ++i_layer_cell) { vtkIdType id_cell = layer_cells[i_layer_cell]; - vtkIdType type_cell = m_Grid->GetCellType(id_cell); - vtkIdType *pts; - vtkIdType Npts; - m_Grid->GetCellPoints(id_cell, Npts, pts); + EG_GET_CELL(id_cell, m_Grid); if (type_cell == VTK_TRIANGLE) { nds->Reset(); - faces[i_layer_cell].resize(Npts); - for (int i_pts = 0; i_pts < Npts; ++i_pts) { - faces[i_layer_cell][Npts - 1 - i_pts] = pts[i_pts]; + faces[i_layer_cell].resize(num_pts); + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { + faces[i_layer_cell][num_pts - 1 - i_pts] = pts[i_pts]; nds->InsertNextId(pts[i_pts]); new_points.insert(pts[i_pts]); } @@ -371,10 +369,9 @@ void SeedSimplePrismaticLayer::operate() for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { vtkIdType type_cell = m_Grid->GetCellType(id_cell); if ((type_cell == VTK_TRIANGLE) || (type_cell == VTK_TETRA)) { - vtkIdType *pts, N_pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); bool split = false; - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { if (is_split_node[pts[i_pts]]) { split = true; if (node_layer_old->GetValue(pts[i_pts]) != old_layer) { @@ -388,7 +385,7 @@ void SeedSimplePrismaticLayer::operate() } else { bool f = false; if (old_layer > 0) { - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { if (node_layer_old->GetValue(pts[i_pts]) == old_layer - 1) { f = true; } @@ -398,11 +395,11 @@ void SeedSimplePrismaticLayer::operate() needs_correction[id_cell] = true; } else { cout << "dodgy face: " << id_cell << " "; - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { cout << "(" << pts[i_pts] << "," << node_layer_old->GetValue(pts[i_pts]) << ") "; } cout << endl; - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { if (is_split_node[pts[i_pts]]) { vec3_t x; m_Grid->GetPoint(pts[i_pts], x.data()); @@ -425,8 +422,8 @@ void SeedSimplePrismaticLayer::operate() is_in_vol_cells[id_vol_cell] = true; vtkIdType type_vol_cell = m_Grid->GetCellType(id_vol_cell); if (type_vol_cell == VTK_TETRA) { - vtkIdType *pts, N_pts, p[6]; - m_Grid->GetCellPoints(id_vol_cell, N_pts, pts); + vtkIdType p[6]; + EG_GET_CELL(id_vol_cell, m_Grid); p[0] = faces[i_faces][0]; p[1] = faces[i_faces][1]; p[2] = faces[i_faces][2]; @@ -448,15 +445,13 @@ void SeedSimplePrismaticLayer::operate() // copy old cells to the new grid for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { - vtkIdType *pts, N_pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - vtkIdType type_cell = m_Grid->GetCellType(id_cell); + EG_GET_CELL(id_cell, m_Grid); if (needs_correction[id_cell]) { - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { pts[i_pts] = old2new[pts[i_pts]]; } } - vtkIdType id_new_cell = new_grid->InsertNextCell(type_cell, N_pts, pts); + vtkIdType id_new_cell = new_grid->InsertNextCell(type_cell, ptIds); copyCellData(m_Grid, id_cell, new_grid, id_new_cell); } diff --git a/src/libengrid/showinfo.cpp b/src/libengrid/showinfo.cpp index 5cb36a20..9447d17d 100644 --- a/src/libengrid/showinfo.cpp +++ b/src/libengrid/showinfo.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "showinfo.h" +#include "engrid.h" #include "insertpoints.h" #include "guimainwindow.h" @@ -57,13 +58,13 @@ void ShowInfo::operate() } cout<<"absolute_c2c(PickedCell)="<GetCellPoints(PickedCell, N_pts, pts); + EG_GET_CELL(PickedCell, m_Grid); cout<<"pts="; - for(int i=0;iGetPoint(pts[i],X.data()); cout<<"pts["< @@ -105,10 +106,7 @@ void SimpleFoamWriter::createFaces() m_Eg2Of.fill(-1,cells.size()); int Nvol = 0; foreach(int i_cells, cells) { - vtkIdType *pts; - vtkIdType Npts; - m_Grid->GetCellPoints(cells[i_cells], Npts, pts); - vtkIdType type_cell = m_Grid->GetCellType(cells[i_cells]); + EG_GET_CELL(cells[i_cells], m_Grid); vtkIdType id_cell = cells[i_cells]; // tetras diff --git a/src/libengrid/stitchholes.cpp b/src/libengrid/stitchholes.cpp index ad4fbf49..2a0bec20 100644 --- a/src/libengrid/stitchholes.cpp +++ b/src/libengrid/stitchholes.cpp @@ -152,8 +152,7 @@ void StitchHoles::stitchHole(QList loop_nodes) EG_FORALL_CELLS(id_cell, tri_grid) { if (cellNormal(tri_grid, id_cell)*m_N < 0) { - vtkIdType num_pts, *pts; - tri_grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, tri_grid); QVector nodes(num_pts); for (vtkIdType j = 0; j < num_pts; ++j) { nodes[j] = pts[j]; diff --git a/src/libengrid/stlreader.cpp b/src/libengrid/stlreader.cpp index 572b0b92..7c0ccd77 100644 --- a/src/libengrid/stlreader.cpp +++ b/src/libengrid/stlreader.cpp @@ -21,13 +21,16 @@ #include "stlreader.h" #include "correctsurfaceorientation.h" +#include "engrid.h" #include "vtkEgPolyDataToUnstructuredGridFilter.h" +#include #include #include #include #include #include +#include #include "guimainwindow.h" #include "fixcadgeometry.h" @@ -71,12 +74,11 @@ void StlReader::operate() poly->BuildCells(); double L = 1e99; for (vtkIdType cellId = 0; cellId < poly->GetNumberOfCells(); ++cellId) { - vtkIdType *pts, Npts; - poly->GetCellPoints(cellId, Npts, pts); - for (int i = 0; i < Npts; ++i) { + EG_GET_CELL(cellId, poly); + for (int i = 0; i < num_pts; ++i) { vec3_t x1, x2; poly->GetPoints()->GetPoint(pts[i], x1.data()); - if (i == Npts - 1) { + if (i == num_pts - 1) { poly->GetPoints()->GetPoint(pts[0], x2.data()); } else { poly->GetPoints()->GetPoint(pts[i+1], x2.data()); @@ -128,10 +130,10 @@ void StlReader::operate() m_Grid->GetPoints()->SetPoint(id_node, x.data()); } for (vtkIdType id_cell = 0; id_cell < poly2ugrid->GetOutput()->GetNumberOfCells(); ++id_cell) { - vtkIdType N_pts, *pts; + vtkSmartPointer pts = vtkSmartPointer::New(); vtkIdType type_cell = poly2ugrid->GetOutput()->GetCellType(id_cell); - poly2ugrid->GetOutput()->GetCellPoints(id_cell, N_pts, pts); - m_Grid->InsertNextCell(type_cell, N_pts, pts); + poly2ugrid->GetOutput()->GetCellPoints(id_cell, pts); + m_Grid->InsertNextCell(type_cell, pts); } EG_VTKDCC(vtkIntArray, bc, m_Grid, "cell_code"); diff --git a/src/libengrid/su2writer.cpp b/src/libengrid/su2writer.cpp index e796c403..10ebbc32 100644 --- a/src/libengrid/su2writer.cpp +++ b/src/libengrid/su2writer.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "su2writer.h" +#include "engrid.h" #include "guimainwindow.h" Su2Writer::Su2Writer() @@ -53,9 +54,8 @@ void Su2Writer::writeElements() for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (isVolume(id_cell, m_Grid)) { f << m_Grid->GetCellType(id_cell); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int j = 0; j < N_pts; ++j) { + EG_GET_CELL(id_cell, m_Grid); + for (int j = 0; j < num_pts; ++j) { f << " " << pts[j]; } f << " " << i << "\n"; @@ -102,9 +102,8 @@ void Su2Writer::writeBoundaries() f << "MARKER_ELEMS= " << faces.size() << "\n"; foreach (vtkIdType id_cell, faces) { f << m_Grid->GetCellType(id_cell); - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - for (int j = 0; j < N_pts; ++j) { + EG_GET_CELL(id_cell, m_Grid); + for (int j = 0; j < num_pts; ++j) { f << " " << pts[j]; } f << "\n"; diff --git a/src/libengrid/surfaceoperation.cpp b/src/libengrid/surfaceoperation.cpp index 4ce276a7..cb21e0c2 100644 --- a/src/libengrid/surfaceoperation.cpp +++ b/src/libengrid/surfaceoperation.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "surfaceoperation.h" +#include "engrid.h" #include "guimainwindow.h" #include @@ -68,11 +69,10 @@ stencil_t SurfaceOperation::getStencil(vtkIdType id_cell1, int j1) { stencil_t S; { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell1, N_pts, pts); + EG_GET_CELL(id_cell1, m_Grid); S.p1 = pts[j1]; S.p2 = pts[0]; - if (j1 < N_pts - 1) { + if (j1 < num_pts - 1) { S.p2 = pts[j1 + 1]; } } @@ -106,10 +106,9 @@ stencil_t SurfaceOperation::getStencil(vtkIdType id_cell1, int j1) S.id_node.resize(S.id_cell.size()); S.type_cell.resize(S.id_cell.size()); for (int i = 0; i < S.id_cell.size(); ++i) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(S.id_cell[i], N_pts, pts); + EG_GET_CELL(S.id_cell[i], m_Grid); S.type_cell[i] = m_Grid->GetCellType(S.id_cell[i]); - for (int j = 0; j < N_pts; ++j) { + for (int j = 0; j < num_pts; ++j) { if (pts[j] != S.p1 && pts[j] != S.p2) { S.id_node[i] = pts[j]; break; @@ -770,8 +769,7 @@ double SurfaceOperation::desiredEdgeLength( vtkIdType id_node ) /// mean desired edge length for id_cell double SurfaceOperation::meanDesiredEdgeLength( vtkIdType id_cell ) { - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints( id_cell, num_pts, pts ); + EG_GET_CELL(id_cell, m_Grid); int total = 0; for ( int i = 0; i < num_pts; i++ ) { total += desiredEdgeLength( pts[i] ); @@ -843,18 +841,17 @@ void SurfaceOperation::computeNormals() if (isSurface(id_cell, m_Grid)) { int bc = cell_code->GetValue(id_cell); if (m_BoundaryCodes.contains(bc)) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); vec3_t a, b, c; - for (int j = 0; j < N_pts; ++j) { + for (int j = 0; j < num_pts; ++j) { if (pts[j] == id_node) { m_Grid->GetPoint(pts[j], a.data()); if (j > 0) { m_Grid->GetPoint(pts[j-1], b.data()); } else { - m_Grid->GetPoint(pts[N_pts-1], b.data()); + m_Grid->GetPoint(pts[num_pts-1], b.data()); } - if (j < N_pts - 1) { + if (j < num_pts - 1) { m_Grid->GetPoint(pts[j+1], c.data()); } else { m_Grid->GetPoint(pts[0], c.data()); diff --git a/src/libengrid/tetgenoperation.cpp b/src/libengrid/tetgenoperation.cpp index 5dd1f434..c3ad0718 100644 --- a/src/libengrid/tetgenoperation.cpp +++ b/src/libengrid/tetgenoperation.cpp @@ -20,6 +20,7 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // #include "tetgenoperation.h" +#include "engrid.h" #include "guimainwindow.h" #include "optimisenormalvector.h" @@ -78,8 +79,7 @@ void TetGenOperation::copyToTetGen(tetgenio &tgio, vtkUnstructuredGrid *alt_grid m_OrgDir = cell_orgdir->GetValue(id_cell); m_CurDir = cell_curdir->GetValue(id_cell); m_VolDir = cell_voldir->GetValue(id_cell); - vtkIdType num_pts, *pts; - grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, grid); tgio.facetlist[i].numberofpolygons = 1; tgio.facetlist[i].polygonlist = new tetgenio::polygon[1]; tgio.facetlist[i].numberofholes = 0; @@ -99,8 +99,7 @@ void TetGenOperation::copyToTetGen(tetgenio &tgio, vtkUnstructuredGrid *alt_grid tgio.tetrahedronlist = new int [tetrahedra.size()*4]; int i = 0; foreach (vtkIdType id_cell, tetrahedra) { - vtkIdType num_pts, *pts; - grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, grid); for (int j = 0; j < num_pts; ++j) { tgio.tetrahedronlist[i*num_pts + j] = pts[j]; } @@ -113,8 +112,7 @@ void TetGenOperation::copyToTetGen(tetgenio &tgio, vtkUnstructuredGrid *alt_grid } for (vtkIdType id_cell = 0; id_cell < grid->GetNumberOfCells(); ++id_cell) { if (isSurface(id_cell, grid)) { - vtkIdType num_pts, *pts; - grid->GetCellPoints(id_cell, num_pts, pts); + EG_GET_CELL(id_cell, grid); for (int i = 0; i < num_pts; ++i) { provide_mesh_resolution[pts[i]] = true; } diff --git a/src/libengrid/triangle.cpp b/src/libengrid/triangle.cpp index 6df3fed7..ea9572db 100644 --- a/src/libengrid/triangle.cpp +++ b/src/libengrid/triangle.cpp @@ -54,9 +54,8 @@ Triangle::Triangle(vtkUnstructuredGrid* grid, vtkIdType id_a, vtkIdType id_b, vt Triangle::Triangle(vtkUnstructuredGrid* grid, vtkIdType id_cell) : EgVtkObject() { setDefaults(); - vtkIdType Npts, *pts; - grid->GetCellPoints(id_cell, Npts, pts); - if (Npts == 3) { + EG_GET_CELL(id_cell, grid); + if (num_pts == 3) { m_IdA = pts[0]; m_IdB = pts[1]; m_IdC = pts[2]; diff --git a/src/libengrid/triangularcadinterface.h b/src/libengrid/triangularcadinterface.h index 5f1f5df6..205a2f38 100644 --- a/src/libengrid/triangularcadinterface.h +++ b/src/libengrid/triangularcadinterface.h @@ -22,6 +22,7 @@ #define TRIANGULARCADINTERFACE_H #include "cadinterface.h" +#include "engrid.h" #include "triangle.h" #include "facefinder.h" #include "surfacealgorithm.h" @@ -100,9 +101,7 @@ void TriangularCadInterface::setBackgroundGrid(vtkUnstructuredGrid* grid, const ++id_new_node; } foreach (vtkIdType id_cell, cells) { - vtkIdType N_pts, *pts; - vtkIdType type_cell = grid->GetCellType(id_cell); - grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, grid); QVector new_pts(3); if (type_cell == VTK_TRIANGLE) { new_pts[0] = _nodes[pts[0]]; diff --git a/src/libengrid/updatedesiredmeshdensity.cpp b/src/libengrid/updatedesiredmeshdensity.cpp index e14e9647..f3f46ce3 100644 --- a/src/libengrid/updatedesiredmeshdensity.cpp +++ b/src/libengrid/updatedesiredmeshdensity.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "updatedesiredmeshdensity.h" +#include "engrid.h" #include "guimainwindow.h" #include "pointfinder.h" #include "cgaltricadinterface.h" @@ -45,15 +46,14 @@ UpdateDesiredMeshDensity::UpdateDesiredMeshDensity() : SurfaceOperation() double UpdateDesiredMeshDensity::computeSearchDistance(vtkIdType id_face) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_face, N_pts, pts); - QVector x(N_pts + 1); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_face, m_Grid); + QVector x(num_pts + 1); + for (int i = 0; i < num_pts; ++i) { m_Grid->GetPoint(pts[i], x[i].data()); } - x[N_pts] = x[0]; + x[num_pts] = x[0]; double L = 0; - for (int i = 0; i < N_pts; ++i) { + for (int i = 0; i < num_pts; ++i) { L = max(L, (x[i] - x[i+1]).abs()); } return L; @@ -70,16 +70,15 @@ void UpdateDesiredMeshDensity::computeExistingLengths() for (vtkIdType id_cell = 0; id_cell < m_Grid->GetNumberOfCells(); ++id_cell) { if (isSurface(id_cell, m_Grid)) { if (fixed_bcs.contains(cell_code->GetValue(id_cell))) { - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); - QVector x(N_pts); - for (int i = 0; i < N_pts; ++i) { + EG_GET_CELL(id_cell, m_Grid); + QVector x(num_pts); + for (int i = 0; i < num_pts; ++i) { m_Grid->GetPoint(pts[i], x[i].data()); m_Fixed[pts[i]] = true; } - for (int i = 0; i < N_pts; ++i) { + for (int i = 0; i < num_pts; ++i) { int j = i + 1; - if (j >= N_pts) { + if (j >= num_pts) { j = 0; } double L = (x[i] - x[j]).abs(); @@ -179,8 +178,7 @@ void UpdateDesiredMeshDensity::computeFeature2D(QVector &cl_pre) if (isSurface(id_face, m_Grid)) { if (cell_code->GetValue(id_face) == bc) { vec3_t xc = cellCentre(m_Grid, id_face); - vtkIdType num_pts, *pts; - m_Grid->GetCellPoints(id_face, num_pts, pts); + EG_GET_CELL(id_face, m_Grid); QVector xn(num_pts + 1); QVector idx(num_pts + 1); for (int i_pts = 0; i_pts < num_pts; ++i_pts) { @@ -332,10 +330,9 @@ void UpdateDesiredMeshDensity::operate() //#pragma omp parallel for for (int i_cell = 0; i_cell < cells.size(); ++i_cell) { vtkIdType id_cell = cells[i_cell]; - vtkIdType N_pts, *pts; - m_Grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, m_Grid); int bc = cell_code->GetValue(id_cell); - for (int i = 0; i < N_pts; ++i) { + for (int i = 0; i < num_pts; ++i) { int i_nodes = m_Part.localNode(pts[i]); R[i_nodes] = min(R[i_nodes], fabs(GuiMainWindow::pointer()->getCadInterface(bc)->getRadius(pts[i]))); } diff --git a/src/libengrid/utilities.cpp b/src/libengrid/utilities.cpp index 463403d7..0259a27a 100644 --- a/src/libengrid/utilities.cpp +++ b/src/libengrid/utilities.cpp @@ -187,11 +187,10 @@ int cout_grid(ostream &stream, vtkUnstructuredGrid *grid, bool npoints, bool nce for (vtkIdType i = 0; i < grid->GetNumberOfCells(); ++i) { vtkCell *C = (vtkCell *) vtkCell::New(); C = grid->GetCell(i); - vtkIdType npts = C->GetNumberOfPoints(); - vtkIdType* pts; - grid->GetCellPoints(i, npts, pts); + EG_GET_CELL(i, grid); stream << "Cell " << i << " = "; - for (int j = 0; j < npts; j++) stream << pts[j] << " "; + for (int j = 0; j < num_pts; j++) + stream << pts[j] << " "; stream << "boundary_code=" << cell_code->GetValue(i); stream << endl; } @@ -217,14 +216,13 @@ int addCell(vtkUnstructuredGrid* a_grid, vtkIdType A, vtkIdType B, vtkIdType C, /////////////////////////////////////////// int getShortestSide(vtkIdType a_id_cell, vtkUnstructuredGrid* a_grid) { - vtkIdType N_pts, *pts; - a_grid->GetCellPoints(a_id_cell, N_pts, pts); - vec3_t* x = new vec3_t[N_pts]; - for (int i = 0; i < N_pts; i++) a_grid->GetPoints()->GetPoint(pts[i], x[i].data()); + EG_GET_CELL(a_id_cell, a_grid); + vec3_t* x = new vec3_t[num_pts]; + for (int i = 0; i < num_pts; i++) a_grid->GetPoints()->GetPoint(pts[i], x[i].data()); int id_minlen = 0; double minlen = (x[1] - x[0]).abs(); - for (int i = 1; i < N_pts; i++) { - double len = (x[(i+1)%N_pts] - x[i]).abs(); + for (int i = 1; i < num_pts; i++) { + double len = (x[(i+1)%num_pts] - x[i]).abs(); if (len < minlen) { minlen = len; id_minlen = i; @@ -235,15 +233,14 @@ int getShortestSide(vtkIdType a_id_cell, vtkUnstructuredGrid* a_grid) { } int getLongestSide(vtkIdType a_id_cell, vtkUnstructuredGrid* a_grid) { - vtkIdType N_pts, *pts; - a_grid->GetCellPoints(a_id_cell, N_pts, pts); - vec3_t* x = new vec3_t[N_pts]; - for (int i = 0; i < N_pts; i++) a_grid->GetPoints()->GetPoint(pts[i], x[i].data()); + EG_GET_CELL(a_id_cell, a_grid); + vec3_t* x = new vec3_t[num_pts]; + for (int i = 0; i < num_pts; i++) a_grid->GetPoints()->GetPoint(pts[i], x[i].data()); int id_maxlen = 0; double maxlen = (x[1] - x[0]).abs(); cout << "maxlen=" << maxlen << endl; - for (int i = 1; i < N_pts; i++) { - double len = (x[(i+1)%N_pts] - x[i]).abs(); + for (int i = 1; i < num_pts; i++) { + double len = (x[(i+1)%num_pts] - x[i]).abs(); cout << "len[" << i << "]=" << len << endl; if (len > maxlen) { maxlen = len; @@ -255,12 +252,11 @@ int getLongestSide(vtkIdType a_id_cell, vtkUnstructuredGrid* a_grid) { } int getSide(vtkIdType a_id_cell, vtkUnstructuredGrid* a_grid, vtkIdType a_id_node1, vtkIdType a_id_node2) { - vtkIdType N_pts, *pts; - a_grid->GetCellPoints(a_id_cell, N_pts, pts); + EG_GET_CELL(a_id_cell, a_grid); QVector edge(2); int n = 0; - for (int i = 0; i < N_pts; i++) { + for (int i = 0; i < num_pts; i++) { if (pts[i] == a_id_node1) { edge[0] = i; n++;} if (pts[i] == a_id_node2) { edge[1] = i; n++;} } @@ -269,7 +265,7 @@ int getSide(vtkIdType a_id_cell, vtkUnstructuredGrid* a_grid, vtkIdType a_id_nod return(-1); } qSort(edge.begin(), edge.end()); - if (edge[0] == 0 && edge[1] == N_pts - 1) return(N_pts - 1); + if (edge[0] == 0 && edge[1] == num_pts - 1) return(num_pts - 1); else return(edge[0]); } /////////////////////////////////////////// @@ -279,14 +275,13 @@ QString cell2str(vtkIdType id_cell, vtkUnstructuredGrid* grid) { tmp.setNum(id_cell); QString txt = "id_cell=" + tmp; - vtkIdType N_pts, *pts; - grid->GetCellPoints(id_cell, N_pts, pts); + EG_GET_CELL(id_cell, grid); txt += " ["; - for (int i_pts = 0; i_pts < N_pts; ++i_pts) { + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { tmp.setNum(pts[i_pts]); txt += tmp; - if (i_pts < N_pts - 1) { + if (i_pts < num_pts - 1) { txt += ","; } } diff --git a/src/libengrid/vertexdelegate.cpp b/src/libengrid/vertexdelegate.cpp index 0335ddba..ec1f0889 100644 --- a/src/libengrid/vertexdelegate.cpp +++ b/src/libengrid/vertexdelegate.cpp @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include +#include #include "vertexdelegate.h" #include "surfacemesher.h" diff --git a/src/libengrid/vtkEgBoundaryCodesFilter.cxx b/src/libengrid/vtkEgBoundaryCodesFilter.cxx index 430a1557..58fb3083 100644 --- a/src/libengrid/vtkEgBoundaryCodesFilter.cxx +++ b/src/libengrid/vtkEgBoundaryCodesFilter.cxx @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "vtkEgBoundaryCodesFilter.h" +#include "engrid.h" #include #include @@ -45,8 +46,6 @@ void vtkEgBoundaryCodesFilter::ExecuteEg() // copy the cells and the cell/node data for (vtkIdType cellId = 0; cellId < m_Input->GetNumberOfCells(); ++cellId) { - vtkIdType *pts; - vtkIdType npts; bool add = false; if (!cell_code) { add = false; @@ -60,10 +59,10 @@ void vtkEgBoundaryCodesFilter::ExecuteEg() } if (add) { - m_Input->GetCellPoints(cellId,npts,pts); - vtkIdType newCell = m_Output->InsertNextCell(m_Input->GetCellType(cellId),npts,pts); + EG_GET_CELL(cellId, m_Input); + vtkIdType newCell = m_Output->InsertNextCell(m_Input->GetCellType(cellId), ptIds); copyCellData(m_Input, cellId, m_Output, newCell); - for(int i = 0; i < npts; i++) { + for (int i = 0; i < num_pts; i++) { if (pts[i] >= m_Input->GetNumberOfPoints()) { EG_BUG; } else if (pts[i] >= m_Output->GetNumberOfPoints()) { diff --git a/src/libengrid/vtkEgEliminateShortEdges.cxx b/src/libengrid/vtkEgEliminateShortEdges.cxx index 5ae5a01b..a2fc8a0f 100644 --- a/src/libengrid/vtkEgEliminateShortEdges.cxx +++ b/src/libengrid/vtkEgEliminateShortEdges.cxx @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "vtkEgEliminateShortEdges.h" +#include "engrid.h" #include "geometrytools.h" vtkStandardNewMacro(vtkEgEliminateShortEdges); @@ -37,17 +38,16 @@ void vtkEgEliminateShortEdges::CheckEdges() for (vtkIdType cellId = 0; cellId < m_Input->GetNumberOfCells(); ++cellId) { int cellType = m_Input->GetCellType(cellId); if ((cellType == VTK_TRIANGLE) || (cellType == VTK_QUAD)) { - vtkIdType *pts, Npts; - m_Input->GetCellPoints(cellId, Npts, pts); + EG_GET_CELL(cellId, m_Input); double L_av = 0; - vector x(Npts); + vector x(num_pts); int N_del = 0; double Lmin = 1e99; int imin = 0; - for (int i = 0; i < Npts; ++i) { + for (int i = 0; i < num_pts; ++i) { vtkIdType p1 = pts[i]; vtkIdType p2; - if (i < Npts-1) p2 = pts[i+1]; + if (i < num_pts-1) p2 = pts[i+1]; else p2 = pts[0]; if (p1 == p2) { EG_ERR_RETURN("bug encountered"); @@ -68,14 +68,14 @@ void vtkEgEliminateShortEdges::CheckEdges() }; if (N_del == 0) { double A = GeometryTools::triArea(x[0],x[1],x[2]); - if (Npts == 4) { + if (num_pts == 4) { A = GeometryTools::quadArea(x[0],x[1],x[2],x[3]); }; - L_av /= Npts; - for (int i = 0; i < Npts; ++i) { + L_av /= num_pts; + for (int i = 0; i < num_pts; ++i) { vtkIdType p1 = pts[i]; vtkIdType p2; - if (i < Npts-1) p2 = pts[i+1]; + if (i < num_pts-1) p2 = pts[i+1]; else p2 = pts[0]; vec3_t x1, x2; m_Input->GetPoints()->GetPoint(p1, x1.data()); @@ -110,12 +110,11 @@ void vtkEgEliminateShortEdges::CheckCells() for (vtkIdType cellId = 0; cellId < m_Input->GetNumberOfCells(); ++cellId) { int cellType = m_Input->GetCellType(cellId); if (cellType == VTK_TRIANGLE) { - vtkIdType *pts, Npts; - m_Input->GetCellPoints(cellId, Npts, pts); - for (int i = 0; i < Npts; ++i) { + EG_GET_CELL(cellId, m_Input); + for (int i = 0; i < num_pts; ++i) { vtkIdType p1 = pts[i]; vtkIdType p2; - if (i < Npts-1) p2 = pts[i+1]; + if (i < num_pts-1) p2 = pts[i+1]; else p2 = pts[0]; if (p1 == p2) { EG_ERR_RETURN("bug encountered"); @@ -158,16 +157,14 @@ void vtkEgEliminateShortEdges::CopyCells() { for (vtkIdType cellId = 0; cellId < m_Input->GetNumberOfCells(); ++cellId) { if(!delete_cell[cellId]) { - vtkIdType *old_pts; - vtkIdType Npts; - m_Input->GetCellPoints(cellId, Npts, old_pts); - vtkIdType *new_pts = new vtkIdType[Npts]; - for (int i = 0; i < Npts; ++i) { - new_pts[i] = node_mapping[old_pts[i]]; + EG_GET_CELL(cellId, m_Input); + std::vector new_pts(num_pts); + for (int i = 0; i < num_pts; ++i) { + new_pts[i] = node_mapping[pts[i]]; }; - vtkIdType newCellId = m_Output->InsertNextCell(m_Input->GetCellType(cellId), Npts, new_pts); + auto newPtIds = idListFromVector(new_pts); + vtkIdType newCellId = m_Output->InsertNextCell(m_Input->GetCellType(cellId), newPtIds); copyCellData(m_Input, cellId, m_Output, newCellId); - delete [] new_pts; }; }; }; diff --git a/src/libengrid/vtkEgExtractVolumeCells.cxx b/src/libengrid/vtkEgExtractVolumeCells.cxx index d788b9d5..499d3525 100644 --- a/src/libengrid/vtkEgExtractVolumeCells.cxx +++ b/src/libengrid/vtkEgExtractVolumeCells.cxx @@ -21,6 +21,8 @@ #include "vtkEgExtractVolumeCells.h" #include +#include +#include vtkStandardNewMacro(vtkEgExtractVolumeCells) @@ -253,43 +255,34 @@ void vtkEgExtractVolumeCells::ExecuteEg() m_Output->GetPoints()->SetPoint(_nodes[id_node], x.data()); } foreach(vtkIdType id_cell, cells) { - vtkIdType num, *stream, *new_stream; + vtkSmartPointer stream = vtkSmartPointer::New(); + vtkSmartPointer new_stream = vtkSmartPointer::New(); vtkIdType type_cell = m_Input->GetCellType(id_cell); + m_Input->GetFaceStream(id_cell, stream); + new_stream->SetNumberOfIds(stream->GetNumberOfIds()); if (type_cell == VTK_POLYHEDRON) { - m_Input->GetFaceStream(id_cell, num, stream); - int stream_length = 0; + vtkIdType num = stream->GetId(0); { - vtkIdType id = 0; + new_stream->SetId(0, stream->GetId(0)); + vtkIdType id = 1; for (int i = 0; i < num; ++i) { - stream_length += stream[id] + 1; - id += stream[id] + 1; - } - } - new_stream = new vtkIdType [stream_length]; - { - vtkIdType id = 0; - for (int i = 0; i < num; ++i) { - vtkIdType num_pts = stream[id]; - new_stream[id] = stream[id]; + vtkIdType num_pts = stream->GetId(id); + new_stream->SetId(id, stream[id].GetId(id)); ++id; for (int j = 0; j < num_pts; ++j) { - new_stream[id] = _nodes[stream[id]]; + new_stream->SetId(id, _nodes[stream->GetId(id)]); ++id; } } } } else { - vtkIdType *stream; - m_Input->GetCellPoints(id_cell, num, stream); - new_stream = new vtkIdType [num]; - for (vtkIdType i = 0; i < num; ++i) { - new_stream[i] = _nodes[stream[i]]; + for (vtkIdType i = 0; i < stream->GetNumberOfIds(); ++i) { + new_stream->SetId(i, _nodes[stream->GetId(i)]); } } - vtkIdType id_new_cell = m_Output->InsertNextCell(type_cell, num, new_stream); + vtkIdType id_new_cell = m_Output->InsertNextCell(type_cell, new_stream); copyCellData(m_Input, id_cell, m_Output, id_new_cell); - delete [] new_stream; } } diff --git a/src/libengrid/vtkEgGridFilter.cxx b/src/libengrid/vtkEgGridFilter.cxx index e92641a9..fa6542a1 100644 --- a/src/libengrid/vtkEgGridFilter.cxx +++ b/src/libengrid/vtkEgGridFilter.cxx @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "vtkEgGridFilter.h" +#include "engrid.h" #include "vtkInformation.h" #include "guimainwindow.h" @@ -126,10 +127,8 @@ void vtkEgGridFilter::ExtractBoundary(QVector &cells, QVectorGetValue(i))) { ex_cells.insert(i); - vtkIdType *pts; - vtkIdType npts; - m_Input->GetCellPoints(i,npts,pts); - for (int j = 0; j < npts; ++j) { + EG_GET_CELL(i, m_Input); + for (int j = 0; j < num_pts; ++j) { ex_nodes.insert(pts[j]); } } diff --git a/src/libengrid/vtkEgNormalExtrusion.cxx b/src/libengrid/vtkEgNormalExtrusion.cxx index 9cc6735a..cbc2fa3b 100644 --- a/src/libengrid/vtkEgNormalExtrusion.cxx +++ b/src/libengrid/vtkEgNormalExtrusion.cxx @@ -20,7 +20,10 @@ // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "vtkEgNormalExtrusion.h" +#include "engrid.h" #include "geometrytools.h" +#include +#include vtkStandardNewMacro(vtkEgNormalExtrusion) @@ -146,17 +149,15 @@ void vtkEgNormalExtrusion::ExecuteEg() // count the number of new surface elements (side walls) for (int i_cell = 0; i_cell < cells.size(); ++i_cell) { - vtkIdType *pts; - vtkIdType Npts; - m_Input->GetCellPoints(cells[i_cell], Npts, pts); - QVector surf_pts(Npts); - for (int i_pts = 0; i_pts < Npts; ++i_pts) { + EG_GET_CELL(cells[i_cell], m_Input); + QVector surf_pts(num_pts); + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { surf_pts[i_pts] = _nodes[pts[i_pts]]; } - for (int i_surf_pts = 0; i_surf_pts < Npts; ++i_surf_pts) { + for (int i_surf_pts = 0; i_surf_pts < num_pts; ++i_surf_pts) { vtkIdType p1 = surf_pts[i_surf_pts]; vtkIdType p2; - if (i_surf_pts < Npts - 1) { + if (i_surf_pts < num_pts - 1) { p2 = surf_pts[i_surf_pts + 1]; } else { p2 = surf_pts[0]; @@ -184,9 +185,8 @@ void vtkEgNormalExtrusion::ExecuteEg() nvol.fill(0, nodes.size()); for (vtkIdType id_cell = 0; id_cell < m_Input->GetNumberOfCells(); ++id_cell) { if (isVolume(id_cell, m_Input)) { - vtkIdType Npts, *pts; - m_Input->GetCellPoints(id_cell, Npts, pts); - for (int i = 0; i < Npts; ++i) { + EG_GET_CELL(id_cell, m_Input); + for (int i = 0; i < num_pts; ++i) { if (_nodes[pts[i]] >= 0) { ++nvol[_nodes[pts[i]]]; } @@ -195,9 +195,8 @@ void vtkEgNormalExtrusion::ExecuteEg() } for (int i_cell = 0; i_cell < cells.size(); ++i_cell) { vtkIdType id_cell = cells[i_cell]; - vtkIdType Npts, *pts; - m_Input->GetCellPoints(id_cell, Npts, pts); - for (int i = 0; i < Npts; ++i) { + EG_GET_CELL(id_cell, m_Input); + for (int i = 0; i < num_pts; ++i) { if (nvol[_nodes[pts[i]]] == 0) { is_boundary[i_cell] = true; } @@ -301,17 +300,15 @@ void vtkEgNormalExtrusion::ExecuteEg() } for (int i_cell = 0; i_cell < cells.size(); ++i_cell) { - vtkIdType *pts; - vtkIdType Npts; - m_Input->GetCellPoints(cells[i_cell], Npts, pts); - QVector surf_pts(Npts); - for (int i_pts = 0; i_pts < Npts; ++i_pts) { + EG_GET_CELL(cells[i_cell], m_Input); + QVector surf_pts(num_pts); + for (int i_pts = 0; i_pts < num_pts; ++i_pts) { surf_pts[i_pts] = _nodes[pts[i_pts]]; } - for (int i_surf_pts = 0; i_surf_pts < Npts; ++i_surf_pts) { + for (int i_surf_pts = 0; i_surf_pts < num_pts; ++i_surf_pts) { vtkIdType p1 = surf_pts[i_surf_pts]; vtkIdType p2; - if (i_surf_pts < Npts - 1) { + if (i_surf_pts < num_pts - 1) { p2 = surf_pts[i_surf_pts + 1]; } else { p2 = surf_pts[0]; @@ -346,7 +343,7 @@ void vtkEgNormalExtrusion::ExecuteEg() voldir->SetValue(id_new_cell, 0); } } - if (Npts == 3) { + if (num_pts == 3) { { vtkIdType pri_pts[6]; pri_pts[0] = n1[surf_pts[0]]; @@ -377,7 +374,7 @@ void vtkEgNormalExtrusion::ExecuteEg() voldir->SetValue(id_new_cell, 0); } } - if (Npts == 4) { + if (num_pts == 4) { { vtkIdType pri_pts[8]; pri_pts[0] = n1[surf_pts[0]]; @@ -411,33 +408,33 @@ void vtkEgNormalExtrusion::ExecuteEg() voldir->SetValue(id_new_cell, 0); } } - if (Npts > 4) { + if (num_pts > 4) { { EG_VTKSP(vtkIdList, stream); - stream->SetNumberOfIds(1 + 2*(Npts + 1) + Npts*5); + stream->SetNumberOfIds(1 + 2*(num_pts + 1) + num_pts*5); vtkIdType id = 0; - stream->SetId(id++, 2 + Npts); + stream->SetId(id++, 2 + num_pts); // bottom face - stream->SetId(id++, Npts); - for (int i = Npts - 1; i >= 0; --i) { + stream->SetId(id++, num_pts); + for (int i = num_pts - 1; i >= 0; --i) { stream->SetId(id++, n1[surf_pts[i]]); } // top face - stream->SetId(id++, Npts); - for (int i = 0; i < Npts; ++i) { + stream->SetId(id++, num_pts); + for (int i = 0; i < num_pts; ++i) { stream->SetId(id++, n2[surf_pts[i]]); } // side faces - for (int i = 0; i < Npts; ++i) { + for (int i = 0; i < num_pts; ++i) { stream->SetId(id++, 4); vtkIdType p1 = n1[surf_pts[i]]; vtkIdType p2 = n1[surf_pts[0]]; vtkIdType p3 = n2[surf_pts[0]]; vtkIdType p4 = n2[surf_pts[i]]; - if (i < Npts - 1) { + if (i < num_pts - 1) { p2 = n1[surf_pts[i+1]]; p3 = n2[surf_pts[i+1]]; } @@ -455,8 +452,8 @@ void vtkEgNormalExtrusion::ExecuteEg() } if (i_layer == layer_y.size() - 2) { EG_VTKSP(vtkIdList, poly_pts); - poly_pts->SetNumberOfIds(Npts); - for (vtkIdType id = 0; id < Npts; ++id) { + poly_pts->SetNumberOfIds(num_pts); + for (vtkIdType id = 0; id < num_pts; ++id) { poly_pts->SetId(id, n2[surf_pts[id]]); } vtkIdType id_new_cell = m_Output->InsertNextCell(VTK_POLYGON, poly_pts); @@ -493,14 +490,16 @@ void vtkEgNormalExtrusion::ExecuteEg() for (int i_cell = 0; i_cell < cells.size(); ++i_cell) { if (is_boundary[i_cell]) { vtkIdType id_cell = cells[i_cell]; - vtkIdType *pts; - vtkIdType Npts; - m_Input->GetCellPoints(id_cell, Npts, pts); - vtkIdType id_new_cell = m_Output->InsertNextCell(m_Input->GetCellType(id_cell), Npts, pts); - m_Output->GetCellPoints(id_new_cell, Npts, pts); - QVector nodes(Npts); - for (vtkIdType j = 0; j < Npts; ++j) nodes[j] = pts[j]; - for (vtkIdType j = 0; j < Npts; ++j) pts[Npts - j - 1] = nodes[j]; + // vtkIdType *pts; + // vtkIdType num_pts; + vtkSmartPointer pts = vtkSmartPointer::New(); + m_Input->GetCellPoints(id_cell, pts); + vtkIdType id_new_cell = m_Output->InsertNextCell(m_Input->GetCellType(id_cell), pts); + m_Output->GetCellPoints(id_new_cell, pts); + auto num_pts = pts->GetNumberOfIds(); + QVector nodes(num_pts); + for (vtkIdType j = 0; j < num_pts; ++j) nodes[j] = pts->GetId(j); + for (vtkIdType j = 0; j < num_pts; ++j) pts->SetId(num_pts - j - 1, nodes[j]); copyCellData(m_Input, id_cell, m_Output, id_new_cell); if (m_CustomBottomBc > 0) { cell_code2->SetValue(id_new_cell, m_CustomBottomBc); diff --git a/src/libengrid/vtkEgPolyDataToUnstructuredGridFilter.cxx b/src/libengrid/vtkEgPolyDataToUnstructuredGridFilter.cxx index 6728c9a0..8cafe1a0 100644 --- a/src/libengrid/vtkEgPolyDataToUnstructuredGridFilter.cxx +++ b/src/libengrid/vtkEgPolyDataToUnstructuredGridFilter.cxx @@ -19,6 +19,7 @@ // + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #include "vtkEgPolyDataToUnstructuredGridFilter.h" +#include "engrid.h" #include #include @@ -86,15 +87,13 @@ int vtkEgPolyDataToUnstructuredGridFilter::RequestData input->BuildCells(); output->Allocate(input->GetNumberOfPolys(),input->GetNumberOfPolys()); for (vtkIdType cellId = 0; cellId < input->GetNumberOfPolys(); ++cellId) { - vtkIdType *pts; - vtkIdType npts; - input->GetCellPoints(cellId,npts,pts); - if (npts == 3) { - output->InsertNextCell(VTK_TRIANGLE,3,pts); - } else if (npts == 4) { - output->InsertNextCell(VTK_QUAD,4,pts); - } else if (npts > 4) { - output->InsertNextCell(VTK_POLYGON, npts, pts); + EG_GET_CELL(cellId, input); + if (num_pts == 3) { + output->InsertNextCell(VTK_TRIANGLE, ptIds); + } else if (num_pts == 4) { + output->InsertNextCell(VTK_QUAD, ptIds); + } else if (num_pts > 4) { + output->InsertNextCell(VTK_POLYGON, ptIds); } } diff --git a/src/main.cpp b/src/main.cpp index 5f37605b..538be354 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -24,6 +24,7 @@ #include #include #include +#include #include "guimainwindow.h" #include "filetemplate.h" @@ -150,22 +151,19 @@ void makeDistribution() qCritical() is used for writing critical error mesages and reporting system errors. qFatal() is used for writing fatal error messages shortly before exiting. */ -void engridMessageHandler(QtMsgType type, const char *msg) +void engridMessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg) { - switch (type) { - case QtDebugMsg: -// fprintf(stdout, "%s", msg); - cout<