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
c3fe628d
Commit
c3fe628d
authored
Dec 16, 2010
by
Christian Kandeler
Browse files
Remove annoying warnings when loading Creator master.
The proper fix would be to support the QMAKE_SUBSTITUTES variable.
parent
6445ffc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt4nodes.cpp
View file @
c3fe628d
...
...
@@ -2092,11 +2092,12 @@ void Qt4ProFileNode::setupInstallsList(const ProFileReader *reader)
m_installsList
.
targetPath
=
itemPath
;
}
else
{
if
(
itemFiles
.
isEmpty
())
{
if
(
!
reader
->
values
(
item
+
QLatin1String
(
".CONFIG"
))
.
contains
(
QLatin1String
(
"no_check_exist"
)))
{
qDebug
(
"%s: Ignoring INSTALLS item '%s', because it has no files."
,
qPrintable
(
m_projectFilePath
),
qPrintable
(
item
));
}
// TODO: Fix QMAKE_SUBSTITUTES handling in pro file reader, then uncomment again
// if (!reader->values(item + QLatin1String(".CONFIG"))
// .contains(QLatin1String("no_check_exist"))) {
// qDebug("%s: Ignoring INSTALLS item '%s', because it has no files.",
// qPrintable(m_projectFilePath), qPrintable(item));
// }
continue
;
}
m_installsList
.
items
<<
InstallsItem
(
itemPath
,
itemFiles
);
...
...
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