Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
83ec7cd3
Commit
83ec7cd3
authored
Sep 29, 2010
by
pixhawk
Browse files
Fixed compilation under MacOS, windows check next step
parent
44987026
Changes
3
Show whitespace changes
Inline
Side-by-side
qgroundcontrol.pri
View file @
83ec7cd3
...
...
@@ -69,6 +69,7 @@ macx {
-framework SDL \
-framework CoreFoundation \
-framework ApplicationServices \
-framework GLUT \
-lm
ICON = $$BASEDIR/images/icons/macx.icns
...
...
@@ -114,7 +115,8 @@ linux-g++ {
-lflite_cmulex \
-lflite \
-lSDL \
-lSDLmain
-lSDLmain \
-lglut
}
...
...
qgroundcontrol.pro
View file @
83ec7cd3
...
...
@@ -44,7 +44,6 @@ INCLUDEPATH += . \
lib
/
QMapControl
\
$$
BASEDIR
/../
mavlink
/
contrib
/
slugs
/
include
\
$$
BASEDIR
/../
mavlink
/
include
LIBS
+=
-
lglut
#
..
/
mavlink
/
include
\
#
MAVLink
/
include
\
...
...
src/ui/map3D/QMap3DWidget.cc
View file @
83ec7cd3
...
...
@@ -31,7 +31,11 @@ This file is part of the QGROUNDCONTROL project
#include
"QMap3DWidget.h"
#if (defined __APPLE__) & (defined __MACH__)
#include
<GLUT/glut.h>
#else
#include
<GL/glut.h>
#endif
#include
<QCheckBox>
#include
<sys/time.h>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment