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
Marco Bubke
flatpak-qt-creator
Commits
4768bb8d
Commit
4768bb8d
authored
Nov 03, 2010
by
Friedemann Kleint
Browse files
Qt4ProjectManager: Compile on Non-windows.
parent
0aaeae97
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
4768bb8d
...
...
@@ -50,7 +50,9 @@
#include
<extensionsystem/pluginmanager.h>
#include
<help/helpmanager.h>
#include
<utils/qtcassert.h>
#include
<utils/winutils.h>
#ifdef Q_OS_WIN
# include <utils/winutils.h>
#endif
#include
<QtCore/QFile>
#include
<QtCore/QProcess>
...
...
@@ -1769,8 +1771,12 @@ QString QtVersion::examplesPath() const
bool
QtVersion
::
isQt64Bit
()
const
{
#ifdef Q_OS_WIN
const
QString
qmake
=
qmakeCommand
();
return
qmake
.
isEmpty
()
?
false
:
Utils
::
winIs64BitBinary
(
qmake
);
#else
return
false
;
#endif
}
bool
QtVersion
::
buildDebuggingHelperLibrary
(
QFutureInterface
<
void
>
&
future
,
...
...
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