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
Q
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
Tobias Hunger
qt-creator
Commits
259197a5
Commit
259197a5
authored
Jun 03, 2009
by
Oswald Buddenhagen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean up OS conditionals in project files
parent
d2a8449b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
20 deletions
+13
-20
doc/doc.pri
doc/doc.pri
+0
-2
src/app/app.pro
src/app/app.pro
+8
-15
src/plugins/coreplugin/coreplugin.pro
src/plugins/coreplugin/coreplugin.pro
+3
-1
src/qtcreatorlibrary.pri
src/qtcreatorlibrary.pri
+1
-1
src/qtcreatorplugin.pri
src/qtcreatorplugin.pri
+1
-1
No files found.
doc/doc.pri
View file @
259197a5
...
...
@@ -23,9 +23,7 @@ qch_docs.files = $$QCH_FILE
unix:!macx {
system("mkdir -p `dirname $$QCH_FILE` && touch $$QCH_FILE")
}
unix:!macx {
qch_docs.path = /share/doc/qtcreator
INSTALLS += qch_docs
}
...
...
src/app/app.pro
View file @
259197a5
...
...
@@ -5,29 +5,22 @@ TEMPLATE = app
TARGET
=
$$
IDE_APP_TARGET
DESTDIR
=
$$
IDE_APP_PATH
SOURCES
+=
main
.
cpp
include
(..
/
rpath
.
pri
)
win32
{
RC_FILE
=
qtcreator
.
rc
}
macx
{
ICON
=
qtcreator
.
icns
QMAKE_INFO_PLIST
=
Info
.
plist
}
CONFIG
(
debug
,
debug
|
release
)
:
LIBS
*=
-
lExtensionSystemd
-
lAggregationd
else
:
LIBS
*=
-
lExtensionSystem
-
lAggregation
macx
{
RC_FILE
=
qtcreator
.
rc
}
else
:
macx
{
CONFIG
(
debug
,
debug
|
release
)
:
LIBS
*=
-
lExtensionSystem_debug
-
lAggregation_debug
else
:
LIBS
*=
-
lExtensionSystem
-
lAggregation
}
win32
{
CONFIG
(
debug
,
debug
|
release
)
:
LIBS
*=
-
lExtensionSystemd
-
lAggregationd
else
:
LIBS
*=
-
lExtensionSystem
-
lAggregation
}
unix
:
!
macx
{
ICON
=
qtcreator
.
icns
QMAKE_INFO_PLIST
=
Info
.
plist
}
else
{
LIBS
*=
-
lExtensionSystem
-
lAggregation
target
.
path
=
/
bin
...
...
src/plugins/coreplugin/coreplugin.pro
View file @
259197a5
...
...
@@ -170,9 +170,11 @@ FORMS += dialogs/newdialog.ui \
welcomemode
.
ui
RESOURCES
+=
core
.
qrc
\
fancyactionbar
.
qrc
linux
-*
{
unix
:
!
macx
{
images
.
files
=
images
/
qtcreator_logo_
*.
png
images
.
path
=
/
share
/
pixmaps
INSTALLS
+=
images
}
OTHER_FILES
+=
Core
.
pluginspec
src/qtcreatorlibrary.pri
View file @
259197a5
...
...
@@ -12,7 +12,7 @@ TARGET = $$qtLibraryTarget($$TARGET)
contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
linux-*
{
unix:!macx
{
target.path = /$$IDE_LIBRARY_BASENAME/qtcreator
INSTALLS += target
}
src/qtcreatorplugin.pri
View file @
259197a5
...
...
@@ -42,7 +42,7 @@ contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
CONFIG += plugin plugin_with_soname
linux-*
{
unix:!macx
{
target.path = /$$IDE_LIBRARY_BASENAME/qtcreator/plugins/$$PROVIDER
pluginspec.files += $${TARGET}.pluginspec
pluginspec.path = /$$IDE_LIBRARY_BASENAME/qtcreator/plugins/$$PROVIDER
...
...
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