Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
56f05dc8
Commit
56f05dc8
authored
Aug 05, 2015
by
Daniel Agar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
set QGC version from git
parent
93af2553
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
46 additions
and
24 deletions
+46
-24
.gitignore
.gitignore
+3
-2
QGCApplication.pro
QGCApplication.pro
+2
-1
git_version.pri
git_version.pri
+26
-0
qgroundcontrol.pro
qgroundcontrol.pro
+5
-0
QGCApplication.cc
src/QGCApplication.cc
+7
-4
QGCConfig.h
src/QGCConfig.h
+0
-17
git_version.h
src/git_version.h
+3
-0
No files found.
.gitignore
View file @
56f05dc8
...
@@ -68,7 +68,8 @@ ui_*
...
@@ -68,7 +68,8 @@ ui_*
*.so*
*.so*
*.moc
*.moc
*.prl
*.prl
git_version.cpp
git_version.obj
# android
# android
android/local.properties
android/local.properties
android/gradle.properties
\ No newline at end of file
QGCApplication.pro
View file @
56f05dc8
...
@@ -18,9 +18,10 @@
...
@@ -18,9 +18,10 @@
#
-------------------------------------------------
#
-------------------------------------------------
include
(
QGCCommon
.
pri
)
include
(
QGCCommon
.
pri
)
include
(
git_version
.
pri
)
TARGET
=
qgroundcontrol
TARGET
=
qgroundcontrol
TEMPLATE
=
app
TEMPLATE
=
app
#
Load
additional
config
flags
from
user_config
.
pri
#
Load
additional
config
flags
from
user_config
.
pri
exists
(
user_config
.
pri
)
:
infile
(
user_config
.
pri
,
CONFIG
)
{
exists
(
user_config
.
pri
)
:
infile
(
user_config
.
pri
,
CONFIG
)
{
...
...
git_version.pri
0 → 100644
View file @
56f05dc8
# set the QGC version from git
exists ($$PWD/.git) {
GIT_DESCRIBE = $$system(git --git-dir $$PWD/.git --work-tree $$PWD describe --always --tags)
WindowsBuild {
QGC_GIT_VER = echo extern \"C\" { const char *git_version() { return \"$$GIT_DESCRIBE\"; } } > git_version.cpp
LIBS += git_version.obj
} else {
QGC_GIT_VER = echo \"extern \\\"C\\\" { const char *git_version() { return \\\"$$GIT_DESCRIBE\\\"; } }\" > git_version.cpp
LIBS += git_version.o
}
}
WindowsBuild {
LIBS += git_version.obj
} else {
LIBS += git_version.o
}
CONFIG(debug) {
GIT_VERSION_CXXFLAGS = $$QMAKE_CXXFLAGS_DEBUG
} else {
GIT_VERSION_CXXFLAGS = $$QMAKE_CXXFLAGS_RELEASE
}
QMAKE_PRE_LINK += $$QGC_GIT_VER && $$QMAKE_CXX -c $$GIT_VERSION_CXXFLAGS git_version.cpp
qgroundcontrol.pro
View file @
56f05dc8
...
@@ -22,6 +22,8 @@ CONFIG += ordered
...
@@ -22,6 +22,8 @@ CONFIG += ordered
SUBDIRS
=
.
/
QGCLocationPlugin
.
pro
SUBDIRS
=
.
/
QGCLocationPlugin
.
pro
SUBDIRS
+=
.
/
QGCApplication
.
pro
SUBDIRS
+=
.
/
QGCApplication
.
pro
include
(
git_version
.
pri
)
QGCApplication
.
depends
=
QGCLocationPlugin
QGCApplication
.
depends
=
QGCLocationPlugin
message
(
Qt
version
$$
[
QT_VERSION
])
message
(
Qt
version
$$
[
QT_VERSION
])
...
@@ -30,3 +32,6 @@ message(Qt version $$[QT_VERSION])
...
@@ -30,3 +32,6 @@ message(Qt version $$[QT_VERSION])
error
(
"Unsupported Qt version, 5.4+ is required"
)
error
(
"Unsupported Qt version, 5.4+ is required"
)
}
}
message
(
QGroundControl
version
$$
{
GIT_DESCRIBE
})
git_ver
.
commands
=
$$
QGC_GIT_VER
QMAKE_EXTRA_TARGETS
+=
git_ver
src/QGCApplication.cc
View file @
56f05dc8
...
@@ -42,6 +42,7 @@
...
@@ -42,6 +42,7 @@
#include "VideoStreaming.h"
#include "VideoStreaming.h"
#include "git_version.h"
#include "QGC.h"
#include "QGC.h"
#include "QGCApplication.h"
#include "QGCApplication.h"
#include "MainWindow.h"
#include "MainWindow.h"
...
@@ -276,10 +277,12 @@ QGCApplication::QGCApplication(int &argc, char* argv[], bool unitTesting)
...
@@ -276,10 +277,12 @@ QGCApplication::QGCApplication(int &argc, char* argv[], bool unitTesting)
setOrganizationName
(
QGC_ORG_NAME
);
setOrganizationName
(
QGC_ORG_NAME
);
setOrganizationDomain
(
QGC_ORG_DOMAIN
);
setOrganizationDomain
(
QGC_ORG_DOMAIN
);
// Version string is build from component parts. Format is:
QString
versionString
(
git_version
());
// vMajor.Minor.BuildNumber BuildType
// stable versions are on tags (v1.2.3)
QString
versionString
(
"v%1.%2.%3 %4"
);
// development versions are full git describe versions (v1.2.3-18-g879e8b3)
versionString
=
versionString
.
arg
(
QGC_APPLICATION_VERSION_MAJOR
).
arg
(
QGC_APPLICATION_VERSION_MINOR
).
arg
(
QGC_APPLICATION_VERSION_BUILDNUMBER
).
arg
(
QGC_APPLICATION_VERSION_BUILDTYPE
);
if
(
versionString
.
length
()
>
8
)
{
versionString
.
append
(
" (Development)"
);
}
this
->
setApplicationVersion
(
versionString
);
this
->
setApplicationVersion
(
versionString
);
// Set settings format
// Set settings format
...
...
src/QGCConfig.h
View file @
56f05dc8
...
@@ -18,21 +18,4 @@
...
@@ -18,21 +18,4 @@
#define QGC_ORG_NAME "QGroundControl.org"
#define QGC_ORG_NAME "QGroundControl.org"
#define QGC_ORG_DOMAIN "org.qgroundcontrol"
#define QGC_ORG_DOMAIN "org.qgroundcontrol"
#define QGC_APPLICATION_VERSION_MAJOR 2
#define QGC_APPLICATION_VERSION_MINOR 8
// The following #definess can be overriden from the command line so that automated build systems can
// add additional build identification.
// Only comes from command line
//#define QGC_APPLICATION_VERSION_COMMIT "..."
#ifndef QGC_APPLICATION_VERSION_BUILDNUMBER
#define QGC_APPLICATION_VERSION_BUILDNUMBER 0
#endif
#ifndef QGC_APPLICATION_VERSION_BUILDTYPE
#define QGC_APPLICATION_VERSION_BUILDTYPE "(Development)"
#endif
#endif // QGC_CONFIGURATION_H
#endif // QGC_CONFIGURATION_H
src/git_version.h
0 → 100644
View file @
56f05dc8
extern
"C"
{
const
char
*
git_version
();
}
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