PawelekPro / MeshGeneratingTool

Mesh generation tool utilizing c++ qt6, vtk, opencascade and gmsh
GNU General Public License v3.0
8 stars 0 forks source link

Mesh generating tool

Prerequisites (required libraries)

To compile and run this project, the following libraries are required:

  1. VTK (Visualization Toolkit)

  2. OpenCASCADE

  3. Qt

  4. CMake

Build Instructions

  1. Clone the project source code from the GitHub repository.

    git clone https://github.com/PawelekPro/MeshGeneratingTool.git
    mkdir build && cd build
    cmake ..
    make

    Using MinGW:

    mkdir build && cd build
    cmake -G "MSYS Makefiles" ..
    make