-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
89 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
source /usr/local/share/liri-travis/functions | ||
|
||
# Configure qbs | ||
travis_start "qbs_setup" | ||
msg "Setup qbs..." | ||
qbs setup-toolchains --detect | ||
qbs setup-qt $(which qmake) travis-qt5 | ||
qbs config profiles.travis-qt5.baseProfile $CC | ||
travis_end "qbs_setup" | ||
|
||
# Build | ||
travis_start "build" | ||
msg "Build..." | ||
dbus-run-session -- \ | ||
xvfb-run -a -s "-screen 0 800x600x24" \ | ||
qbs -d build -j $(nproc) --all-products profile:travis-qt5 \ | ||
modules.lirideployment.prefix:/usr \ | ||
modules.lirideployment.libDir:/usr/lib/x86_64-linux-gnu \ | ||
modules.lirideployment.qmlDir:/usr/lib/x86_64-linux-gnu/qt5/qml \ | ||
modules.lirideployment.pluginsDir:/usr/lib/x86_64-linux-gnu/qt5/plugins \ | ||
projects.Fluid.autotestEnabled:true \ | ||
projects.Fluid.useSystemQbsShared:false \ | ||
projects.Fluid.deploymentEnabled:true | ||
travis_end "build" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop"> | ||
<id>io.liri.Fluid.Demo.desktop</id> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-3.0+</project_license> | ||
<name>Fluid Demo</name> | ||
<summary>Demonstrate Fluid QML modules</summary> | ||
<description> | ||
<p> | ||
Fluid is an implementation of the Material Design language for | ||
Qt developers. | ||
</p> | ||
<p> | ||
This app shows what Fluid has to offer. | ||
</p> | ||
</description> | ||
<!-- TODO: Add screenshots --> | ||
<url type="homepage">https://liri.io</url> | ||
<update_contact>info@liri.io</update_contact> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[Desktop Entry] | ||
Name=Fluid Demo | ||
Comment=Demonstrate Fluid modules | ||
Exec=fluid-demo | ||
Terminal=false | ||
Type=Application | ||
Categories=X-Liri;Qt;Development; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters