chore: add more to gitignore, add radicle to README

This commit is contained in:
Joshua Strobl 2024-10-05 00:15:51 +03:00
parent 62c99ee67c
commit 4e78c664e6
3 changed files with 25 additions and 14 deletions

5
.gitignore vendored
View file

@ -72,9 +72,13 @@ CMakeLists.txt.user*
*.dll *.dll
*.exe *.exe
.cache/
.ccls-cache/ .ccls-cache/
.idea/
.kdev4/
.qt/ .qt/
.rcc/ .rcc/
.zed/
bin/ bin/
build*/ build*/
cmake-build-debug/ cmake-build-debug/
@ -83,3 +87,4 @@ cmake-build-debug/
**/qmltypes **/qmltypes
**/*.qrc **/*.qrc
CMakeCache.txt CMakeCache.txt
*.kdev4

View file

@ -2,6 +2,12 @@
Work in progress implementation of Koto in Qt6, Kirigami, and C++. Work in progress implementation of Koto in Qt6, Kirigami, and C++.
To clone this repository on [Radicle](https://radicle.xyz), simple run:
```
rad clone rad://z2RuqdobvbGje3mWhtMQ9cUVNfizp
```
## LICENSE ## LICENSE
Licensed under the Mozilla Public License 2.0 (MPL-2.0). Licensed under the Mozilla Public License 2.0 (MPL-2.0).

View file

@ -1,17 +1,17 @@
version: "3" version: "3"
tasks: tasks:
sdbus-gen-desktop: sdbus-gen-desktop:
cmds: cmds:
- sdbus-c++-xml2cpp desktop/dbus/schema.xml --adaptor=desktop/dbus/daemon-server.h --proxy=desktop/dbus/daemon-client.h - sdbus-c++-xml2cpp desktop/dbus/schema.xml --adaptor=desktop/dbus/daemon-server.h --proxy=desktop/dbus/daemon-client.h
setup-desktop: setup-desktop:
desc: "Run cmake configuration for desktop Koto" desc: "Run cmake configuration for desktop Koto"
cmds: cmds:
- cmake -S . -B build - cmake -S . -B build
build: cmake --build build --verbose build: cmake --build build
build-watch-desktop: watchman-make -p '**/*.cpp' '**/*.h' --run "task cook-desktop" build-watch-desktop: watchman-make -p '**/*.cpp' '**/*.h' --run "task cook-desktop"
cook-desktop: cook-desktop:
cmds: cmds:
- task setup-desktop - task setup-desktop
- task build - task build
install: sudo make install -C build install: sudo make install -C build