Update git repository URL

This commit is contained in:
Olivier Goffart 2022-02-08 08:26:21 +01:00
parent 28dd8f6294
commit 00ff5e21a7
62 changed files with 103 additions and 103 deletions

View file

@ -2,8 +2,8 @@
In this tutorial, we have demonstrated how to combine some built-in Slint elements with C++ code to build a little
game. There are many more features that we have not talked about, such as layouts, widgets, or styling. Have a look
at the [examples](https://github.com/sixtyfpsui/sixtyfps/tree/master/examples) in the Slint repo to
see how these look like and can be used, such as the [todo example](https://github.com/sixtyfpsui/sixtyfps/tree/master/examples/todo).
at the [examples](https://github.com/slint-ui/slint/tree/master/examples) in the Slint repo to
see how these look like and can be used, such as the [todo example](https://github.com/slint-ui/slint/tree/master/examples/todo).
A slightly more polished version of this memory puzzle game is [available in the Slint repository](
https://github.com/sixtyfpsui/sixtyfps/tree/master/examples/memory). And you can <a href="https://sixtyfps.io/demos/memory/" target="_blank">play the wasm version</a> in your browser.
https://github.com/slint-ui/slint/tree/master/examples/memory). And you can <a href="https://sixtyfps.io/demos/memory/" target="_blank">play the wasm version</a> in your browser.

View file

@ -20,7 +20,7 @@ project(memory LANGUAGES CXX)
include(FetchContent)
FetchContent_Declare(
Slint
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_REPOSITORY https://github.com/slint-ui/slint.git
GIT_TAG v0.1.6
SOURCE_SUBDIR api/cpp
)