Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
72a41511
Commit
72a41511
authored
Dec 10, 2010
by
pixhawk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compile errors on MINGW Windows
parent
12746a8b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
.gitignore
.gitignore
+4
-0
qgroundcontrol.pri
qgroundcontrol.pri
+7
-7
No files found.
.gitignore
View file @
72a41511
...
...
@@ -27,3 +27,7 @@ deploy/linux
controller_log*
user_config.pri
*.app
*.ncb
*.vcproj
*.sln
\ No newline at end of file
qgroundcontrol.pri
View file @
72a41511
...
...
@@ -325,7 +325,7 @@ exists($$BASEDIR/lib/osgEarth123) {
BASEDIR_WIN = $$replace(BASEDIR,"/","\\")
TARGETDIR_WIN = $$replace(TARGETDIR,"/","\\")
QMAKE_PRE_LINK += && copy /Y \"$$BASEDIR_WIN\
lib\sdl\win32\SDL.dll\" \"$$TARGETDIR_WIN\debug
\SDL.dll\"
QMAKE_PRE_LINK += && copy /Y \"$$BASEDIR_WIN\
\lib\\sdl\\win32\\SDL.dll\" \"$$TARGETDIR_WIN\\debug\
\SDL.dll\"
QMAKE_PRE_LINK += && copy /Y \"$$BASEDIR_WIN\lib\sdl\win32\SDL.dll\" \"$$TARGETDIR_WIN\release\SDL.dll\"
QMAKE_PRE_LINK += && xcopy \"$$BASEDIR_WIN\audio\" \"$$TARGETDIR_WIN\debug\audio\" /S /E /Y
QMAKE_PRE_LINK += && xcopy \"$$BASEDIR_WIN\audio\" \"$$TARGETDIR_WIN\release\audio\" /S /E /Y
...
...
@@ -367,12 +367,12 @@ win32-g++ {
# Copy dependencies
QMAKE_PRE_LINK += && cp $$BASEDIR
_WIN/lib/sdl/win32/SDL.dll $$TARGETDIR_WIN
/debug/SDL.dll
QMAKE_PRE_LINK += && cp $$BASEDIR
_WIN/lib/sdl/win32/SDL.dll $$TARGETDIR_WIN
/release/SDL.dll
QMAKE_PRE_LINK += && cp -r $$BASEDIR
_WIN/audio $$TARGETDIR_WIN
/debug/audio
QMAKE_PRE_LINK += && cp -r $$BASEDIR
_WIN/audio $$TARGETDIR_WIN
/release/audio
QMAKE_PRE_LINK += && cp -r $$BASEDIR
_WIN/models $$TARGETDIR_WIN
/debug/models
QMAKE_PRE_LINK += && cp -r $$BASEDIR
_WIN/models $$TARGETDIR_WIN
/release/models
QMAKE_PRE_LINK += && cp $$BASEDIR
/lib/sdl/win32/SDL.dll $$TARGETDIR
/debug/SDL.dll
QMAKE_PRE_LINK += && cp $$BASEDIR
/lib/sdl/win32/SDL.dll $$TARGETDIR
/release/SDL.dll
QMAKE_PRE_LINK += && cp -r $$BASEDIR
/audio $$TARGETDIR
/debug/audio
QMAKE_PRE_LINK += && cp -r $$BASEDIR
/audio $$TARGETDIR
/release/audio
QMAKE_PRE_LINK += && cp -r $$BASEDIR
/models $$TARGETDIR
/debug/models
QMAKE_PRE_LINK += && cp -r $$BASEDIR
/models $$TARGETDIR
/release/models
# osg/osgEarth dynamic casts might fail without this compiler option.
# see http://osgearth.org/wiki/FAQ for details.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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