1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:17:44 +00:00

Demos: Start working on a simple WidgetGallery app.

It's good to have a place where we can try out all the different widgets.
This needs some more work on a nice layout, and should also include more
of the widgets. :^)
This commit is contained in:
Andreas Kling 2019-05-24 22:47:01 +02:00
parent d0bc21b96f
commit 149b7f92a7
9 changed files with 126 additions and 3 deletions

View file

@ -33,6 +33,7 @@ build_targets="$build_targets ../Games/Snake"
build_targets="$build_targets ../Shell"
build_targets="$build_targets ../Demos/HelloWorld"
build_targets="$build_targets ../Demos/RetroFetch"
build_targets="$build_targets ../Demos/WidgetGallery"
build_targets="$build_targets ." # the kernel
for targ in $build_targets; do

View file

@ -81,6 +81,8 @@ cp -v kernel.map mnt/
cp -v ../Demos/HelloWorld/HelloWorld mnt/bin/HelloWorld
ln -s HelloWorld mnt/bin/hw
cp -v ../Demos/RetroFetch/RetroFetch mnt/bin/RetroFetch
cp -v ../Demos/WidgetGallery/WidgetGallery mnt/bin/WidgetGallery
ln -s WidgetGallery mnt/bin/wg
# Run local sync script, if it exists
if [ -f sync-local.sh ]; then