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
06d7e8c0
Commit
06d7e8c0
authored
Oct 08, 2015
by
Don Gagne
Browse files
Merge pull request #1931 from Prioria/win32-jom
Add note to Windows developers to turn off -MP when using jom.
parents
26b98354
f2c50190
Changes
2
Hide whitespace changes
Inline
Side-by-side
.appveyor.yml
View file @
06d7e8c0
...
...
@@ -14,7 +14,7 @@ install:
-
cinst nsis -y -installArgs /D="%programfiles(x86)%\NSIS"
build_script
:
-
C:\Qt\5.4\msvc2013_opengl\bin\qmake -r CONFIG-=debug_and_release CONFIG+=%CONFIG% CONFIG+=WarningsAsErrorsOn qgroundcontrol.pro
-
C:\Qt\5.4\msvc2013_opengl\bin\qmake -r CONFIG-=debug_and_release CONFIG+=%CONFIG% CONFIG+=WarningsAsErrorsOn
CONFIG+=jombuild
qgroundcontrol.pro
-
jom -j
4
test_script
:
...
...
QGCCommon.pri
View file @
06d7e8c0
...
...
@@ -168,8 +168,11 @@ WindowsBuild {
DEFINES += __STDC_LIMIT_MACROS
# Specify multi-process compilation within Visual Studio.
# (drastically improves compilation times for multi-core computers)
QMAKE_CXXFLAGS_DEBUG += -MP
QMAKE_CXXFLAGS_RELEASE += -MP
!jombuild {
message("When using jom/QtCreator please add CONFIG+=jombuild to your project build settings")
QMAKE_CXXFLAGS_DEBUG += -MP
QMAKE_CXXFLAGS_RELEASE += -MP
}
}
#
...
...
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