1
0
Fork 0

chore: add readme

This commit is contained in:
thetek 2023-05-01 13:16:18 +02:00
parent 4363beea8a
commit fbfc88aaca
1 changed files with 36 additions and 0 deletions

36
README.md Normal file
View File

@ -0,0 +1,36 @@
# Vala + GTK4 Template
This is a simple template for creating GTK4 applications using Vala, LibAdwaita
and Blueprint.
## Usage
Edit the file `setup-template.sh` to include your name, project name and
project id. Then, run the script. This will rename everything within the
template to your desired values.
## Building, Running and Installing
Set up the project build folder (only required once):
```sh
$ meson setup build
```
Build the project:
```sh
$ ninja -C build
```
Run the program:
```sh
$ build/src/$PROJECT_NAME
```
Install the program and resources:
```sh
$ sudo ninja -C build install
```