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
ff1ecf4f
Unverified
Commit
ff1ecf4f
authored
Apr 04, 2018
by
Don Gagne
Committed by
GitHub
Apr 04, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6303 from DonLakeFlyer/TravisTarball
Simpler script
parents
4fcb0bed
99673865
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
15 deletions
+10
-15
MakeQtTravisTarball.sh
deploy/MakeQtTravisTarball.sh
+10
-15
No files found.
deploy/MakeQtTravisTarball.sh
View file @
ff1ecf4f
#!/bin/bash -x
if
[
[
$#
-eq
0
]
]
;
then
echo
'MakeQtTravisTarball.sh QtDirectory QtFullVersion QtBaseVersion
BuildType'
exit
1
if
[
$#
-ne
2
]
;
then
echo
'MakeQtTravisTarball.sh QtDirectory
BuildType'
exit
1
fi
QT_DIRECTORY
=
$1
if
[
!
-d
${
QT_DIRECTORY
}
]
;
then
echo
'Specify directory for Qt Directory
.'
exit
1
echo
'Specify directory for Qt Directory to copy from
.'
exit
1
fi
QT_FULL_VERSION
=
$2
if
[
!
-d
${
QT_DIRECTORY
}
/
${
QT_FULL_VERSION
}
]
;
then
echo
'Qt version directory not found'
exit
1
fi
QT_BASE_VERSION
=
$3
QT_FULL_VERSION
=
5.9.3
QT_BASE_VERSION
=
5.9
QT_BUILD_TYPE
=
$
4
QT_BUILD_TYPE
=
$
2
if
[
!
-d
${
QT_DIRECTORY
}
/
${
QT_FULL_VERSION
}
/
${
QT_BUILD_TYPE
}
]
;
then
echo
'Qt build type directory not found
'
exit
1
echo
'Qt build type directory not found. Specify example: clang_62
'
exit
1
fi
mkdir
-p
Qt
${
QT_BASE_VERSION
}
-
${
QT_BUILD_TYPE
}
/
${
QT_FULL_VERSION
}
/
${
QT_BUILD_TYPE
}
...
...
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