Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
kacperpaczos committed Nov 4, 2023
1 parent 610a006 commit f3728e2
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions README → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,35 @@ cinnamon-desktop contains the libcinnamon-desktop library, the cinnamon-about
program as well as some desktop-wide documents.

The libcinnamon-desktop library provides API shared by several applications
on the desktop, but that cannot live in the platform for various
reasons. There is no API or ABI guarantee, although we are doing our
best to provide stability. Documentation for the API is available with
gtk-doc.
on the desktop, but that cannot live in the platform for various reasons.

There is no API or ABI guarantee, although we are doing our best to provide stability.

Documentation for the API is available with gtk-doc.

Installation
============

1) Run meson with options you like. The following configuration installs
all binaries, libs, and shared files into /usr/local, and enables all
available options:

meson debian/build \
--prefix=/usr/local \
--buildtype=debug \
-D deprecated_warnings=false

```shell
meson debian/build --prefix=/usr/local --buildtype=debug -D deprecation_warnings=false
```

2) Compile and install (sudo is needed for install)

ninja -C debian/build
ninja -C debian/build install

```shell
meson build debian/build
meson compile -C debian/build
meson install -C debian/build
```

3) You can uninstall the installed files with

```shell
meson uninstall debian/build
```

ninja -C debian/build uninstall

0 comments on commit f3728e2

Please sign in to comment.