1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

Merge branch 'next' of ssh://git.openpilot.org:22/OpenPilot into next

This commit is contained in:
zedamota 2012-02-18 20:38:22 +00:00
commit 6fdec3364a
4 changed files with 16 additions and 3 deletions

View File

@ -19,7 +19,10 @@ equals(copydata, 1) {
QtSql4.dll \
QtSvg4.dll \
QtTest4.dll \
QtXml4.dll
QtXml4.dll \
QtDeclarative4.dll \
QtXmlPatterns4.dll \
QtScript4.dll
for(dll, QT_DLLS) {
data_copy.commands += $(COPY_FILE) $$targetPath(\"$$[QT_INSTALL_BINS]/$$dll\") $$targetPath(\"$$GCS_APP_PATH/$$dll\") $$addNewline()
}

View File

@ -172,7 +172,7 @@
</dict>
</array>
<key>CFBundleGetInfoString</key>
<string>Qt Creator; Copyright Nokia Corporation</string>
<string>OpenPilot GCS; Copyright OpenPilot</string>
<key>CFBundleIconFile</key>
<string>@ICON@</string>
<key>CFBundlePackageType</key>
@ -182,7 +182,7 @@
<key>CFBundleExecutable</key>
<string>@EXECUTABLE@</string>
<key>CFBundleIdentifier</key>
<string>com.nokia.qtcreator</string>
<string>org.openpilot.openpilotgcs</string>
<key>CFBundleVersion</key>
<string>1.3.1</string>
<key>CFBundleShortVersionString</key>

View File

@ -35,6 +35,11 @@
#include "glu.h"
#endif
#if defined(Q_OS_WIN32)
#include "GL/gl.h"
#include "GL/glu.h"
#endif
#if !defined(Q_OS_MAC)
// ARB_vertex_buffer_object
extern PFNGLBINDBUFFERARBPROC glBindBuffer;

View File

@ -30,6 +30,11 @@
#include "glu.h"
#endif
#if defined(Q_OS_WIN32)
#include "GL/gl.h"
#include "GL/glu.h"
#endif
#include <QtDebug>
using namespace glc;