blob: ab052cd69eb93afb537d0e36388d41441d876ac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
From c57222e79f1c7840e1ed01a4abd17d089f5e5185 Mon Sep 17 00:00:00 2001
From: alemuntoni <muntoni.alessandro@gmail.com>
Date: Tue, 26 May 2020 12:35:03 +0200
Subject: [PATCH] missing include
---
meshlab/glarea.cpp | 1 +
meshlab/meshlab.pro | 1 +
2 files changed, 2 insertions(+)
diff --git a/meshlab/glarea.cpp b/meshlab/glarea.cpp
index 6c0421062..dfd7af229 100644
--- a/meshlab/glarea.cpp
+++ b/meshlab/glarea.cpp
@@ -34,6 +34,7 @@
#include <QFileDialog>
#include <QClipboard>
#include <QLocale>
+#include <QPainterPath>
#include <wrap/gl/picking.h>
#include <wrap/qt/trackball.h>
diff --git a/meshlab/meshlab.pro b/meshlab/meshlab.pro
index 26ef88d00..842eb5ea5 100644
--- a/meshlab/meshlab.pro
+++ b/meshlab/meshlab.pro
@@ -1,5 +1,6 @@
# You have to copy the file by hand into the meshlab.app/Contents/Resources directory.
# ICON += images/meshlab_obj.icns
+QT += gui
QT += opengl
QT += xml
QT += xmlpatterns
|