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
a534a1e4
Commit
a534a1e4
authored
Jan 19, 2009
by
Daniel Molkentin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More work toward make install on Linux.
parent
0f20a20b
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
42 additions
and
1 deletion
+42
-1
qtcreator.pro
qtcreator.pro
+16
-0
share/qtcreator/templates/qt4project/main.cpp
share/qtcreator/templates/qt4project/main.cpp
+0
-0
share/qtcreator/templates/qt4project/mywidget.cpp
share/qtcreator/templates/qt4project/mywidget.cpp
+0
-0
share/qtcreator/templates/qt4project/mywidget.h
share/qtcreator/templates/qt4project/mywidget.h
+0
-0
share/qtcreator/templates/qt4project/mywidget_form.cpp
share/qtcreator/templates/qt4project/mywidget_form.cpp
+0
-0
share/qtcreator/templates/qt4project/mywidget_form.h
share/qtcreator/templates/qt4project/mywidget_form.h
+0
-0
share/qtcreator/templates/qt4project/widget.ui
share/qtcreator/templates/qt4project/widget.ui
+0
-0
src/app/app.pro
src/app/app.pro
+7
-0
src/qworkbench.pri
src/qworkbench.pri
+7
-1
src/qworkbenchlibrary.pri
src/qworkbenchlibrary.pri
+5
-0
src/qworkbenchplugin.pri
src/qworkbenchplugin.pri
+7
-0
No files found.
qtcreator.pro
View file @
a534a1e4
...
...
@@ -6,6 +6,22 @@ count(TOO_OLD_LIST, 1) {
}
linux
-*
{
isEmpty
(
LOCATION
)
{
LOCATION
=
/
usr
/
share
}
documentation
.
files
+=
doc
/
qtcreator
.
qch
documentation
.
path
=
$$
LOCATION
/
share
/
qtcreator
/
doc
/
qtcreator
share
.
files
+=
share
/
qtcreator
/*
share.parth = $$LOCATION/share/qtcreator
INSTALLS += \
documentation \
share
}
TEMPLATE = subdirs
CONFIG += ordered
...
...
share/templates/qt4project/main.cpp
→
share/
qtcreator/
templates/qt4project/main.cpp
View file @
a534a1e4
File moved
share/templates/qt4project/mywidget.cpp
→
share/
qtcreator/
templates/qt4project/mywidget.cpp
View file @
a534a1e4
File moved
share/templates/qt4project/mywidget.h
→
share/
qtcreator/
templates/qt4project/mywidget.h
View file @
a534a1e4
File moved
share/templates/qt4project/mywidget_form.cpp
→
share/
qtcreator/
templates/qt4project/mywidget_form.cpp
View file @
a534a1e4
File moved
share/templates/qt4project/mywidget_form.h
→
share/
qtcreator/
templates/qt4project/mywidget_form.h
View file @
a534a1e4
File moved
share/templates/qt4project/widget.ui
→
share/
qtcreator/
templates/qt4project/widget.ui
View file @
a534a1e4
File moved
src/app/app.pro
View file @
a534a1e4
...
...
@@ -16,6 +16,13 @@ linux-* {
ISGCC33
=
$$
(
GCC33
)
!
equals
(
ISGCC33
,
1
)
:
QT
+=
svg
dbus
isEmpty
(
LOCATION
)
{
error
(
"app.pro: including file must define LOCATION (didn't you run qmake from the root dir?)"
)
}
binaries
.
files
+=
bin
/
qtcreator
binaries
.
path
=
$$
LOCATION
/
bin
}
TEMPLATE
=
app
...
...
src/qworkbench.pri
View file @
a534a1e4
...
...
@@ -6,6 +6,12 @@ isEmpty(TEST):CONFIG(debug, debug|release) {
}
}
linux-* {
isEmpty( LOCATION ) {
error("qworkbench.pri: including file must define LOCATION (didn't you run qmake from the root dir?)")
}
}
equals(TEST, 1) {
QT +=testlib
DEFINES += WITH_TESTS
...
...
@@ -20,7 +26,7 @@ macx {
contains(QT_CONFIG, ppc):CONFIG += ppc x86
} else {
IDE_APP_TARGET = qtcreator
IDE_LIBRARY_PATH = $$IDE_BUILD_TREE/lib
IDE_LIBRARY_PATH = $$IDE_BUILD_TREE/
share/qtcreator/
lib
}
IDE_APP_PATH = $$IDE_BUILD_TREE/bin
win32 {
...
...
src/qworkbenchlibrary.pri
View file @
a534a1e4
...
...
@@ -20,3 +20,8 @@ macx {
TARGET = $$qtLibraryTarget($$TARGET)
contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
linux-* {
target.path = $$LOCATION/lib/qtcreator
INSTALLS += target
}
\ No newline at end of file
src/qworkbenchplugin.pri
View file @
a534a1e4
...
...
@@ -48,3 +48,10 @@ macx {
contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
linux-* {
target.path = $$LOCATION/lib/qtcreator/plugins
INSTALLS += target
}
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