Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
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
Administrator
linphone-desktop
Commits
c28b3c55
Commit
c28b3c55
authored
Sep 23, 2016
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(build_resources_file): supports qmldir files
parent
352dd00a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
build_resources_file
tests/build_resources_file
+3
-1
Style.qml
tests/ui/style/collapse/Style.qml
+12
-0
qmldir
tests/ui/style/qmldir
+2
-0
No files found.
tests/build_resources_file
View file @
c28b3c55
...
...
@@ -5,9 +5,11 @@ echo " <qresource prefix=\"/\">"
for
filename
in
$(
find languages/ ui/ imgs/
-type
f
)
do
basename
=
"
${
filename
##*/
}
"
extension
=
"
${
filename
##*.
}
"
if
[[
"
${
extension
}
"
==
@
(
qml|svg|png|qm|js
)
]]
;
then
if
[[
"
${
extension
}
"
==
@
(
qml|svg|png|qm|js
)
||
"
${
basename
}
"
==
"qmldir"
]]
;
then
echo
" <file>
$filename
</file>"
fi
done
...
...
tests/ui/style/collapse/Style.qml
0 → 100644
View file @
c28b3c55
pragma
Singleton
import
QtQuick
2.7
QtObject
{
property
var
background
:
Rectangle
{
color
:
'
transparent
'
}
property
int
animationDuration
:
200
property
int
iconSize
:
32
property
string
icon
:
'
collapse
'
}
tests/ui/style/qmldir
0 → 100644
View file @
c28b3c55
module Style
singleton CollapseStyle 1.0 collapse/Style.qml
\ No newline at end of file
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