Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
fbca39ae
Commit
fbca39ae
authored
Feb 21, 2011
by
Kai Koehne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QmlJsDebug: Fix compilation on Linux, Mac
Use camel case for library name all over the place.
parent
6a5eb677
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
share/qtcreator/qml/qmljsdebugger/qmljsdebugger.pro
share/qtcreator/qml/qmljsdebugger/qmljsdebugger.pro
+2
-2
share/qtcreator/qml/qmlobserver/qmlobserver.pro
share/qtcreator/qml/qmlobserver/qmlobserver.pro
+2
-2
src/plugins/qt4projectmanager/qmldebugginglibrary.cpp
src/plugins/qt4projectmanager/qmldebugginglibrary.cpp
+4
-4
No files found.
share/qtcreator/qml/qmljsdebugger/qmljsdebugger.pro
View file @
fbca39ae
...
...
@@ -12,9 +12,9 @@ DEFINES += BUILD_QMLJSDEBUGGER_STATIC_LIB
unix
:
QMAKE_CXXFLAGS_DEBUG
+=
-
O3
DESTDIR
=
$$
PWD
TARGET
=
qmljsd
ebugger
TARGET
=
QmlJSD
ebugger
CONFIG
(
debug
,
debug
|
release
)
{
windows
:
TARGET
=
qmljsd
ebuggerd
windows
:
TARGET
=
QmlJSD
ebuggerd
}
#
JS
Debugging
...
...
share/qtcreator/qml/qmlobserver/qmlobserver.pro
View file @
fbca39ae
...
...
@@ -8,9 +8,9 @@ SOURCES += main.cpp
#
INCLUDEPATH
and
library
path
has
to
be
extended
by
qmake
call
DEBUGLIB
=
qmljsd
ebugger
DEBUGLIB
=
QmlJSD
ebugger
CONFIG
(
debug
,
debug
|
release
)
{
windows
:
DEBUGLIB
=
qmljsd
ebuggerd
windows
:
DEBUGLIB
=
QmlJSD
ebuggerd
}
LIBS
+=-
l
$$
DEBUGLIB
...
...
src/plugins/qt4projectmanager/qmldebugginglibrary.cpp
View file @
fbca39ae
...
...
@@ -56,12 +56,12 @@ QString QmlDebuggingLibrary::libraryByInstallData(const QString &qtInstallData,
QStringList
binFilenames
;
if
(
debugBuild
)
{
binFilenames
<<
QLatin1String
(
"
qmljsd
ebuggerd.lib"
);
binFilenames
<<
QLatin1String
(
"lib
qmljsd
ebuggerd.a"
);
// mingw
binFilenames
<<
QLatin1String
(
"
QmlJSD
ebuggerd.lib"
);
binFilenames
<<
QLatin1String
(
"lib
QmlJSD
ebuggerd.a"
);
// mingw
}
else
{
binFilenames
<<
QLatin1String
(
"
qmljsd
ebugger.lib"
);
binFilenames
<<
QLatin1String
(
"
QmlJSD
ebugger.lib"
);
}
binFilenames
<<
QLatin1String
(
"lib
qmljsd
ebugger.a"
);
binFilenames
<<
QLatin1String
(
"lib
QmlJSD
ebugger.a"
);
return
byInstallDataHelper
(
sourcePath
(),
sourceFileNames
(),
directories
,
binFilenames
);
}
...
...
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