1
0
Fork 0
gnome-system-monitor/HACKING
Daniel Baumann f92ba00cb1
Adding upstream version 48.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 21:03:59 +02:00

30 lines
623 B
Text

# Dependencies - can be found in meson.build
sudo apt-get install meson gettext appstream-util catch2 itstool libglibmm-2.4-dev libgtkmm-4.0-dev libgtop2-dev librsvg2-dev libxml2-dev libsystemd-dev libadwaita-dev
# Meson
## configure creates the build directory
meson build --prefix /home/benoit/gnome
## build - compiles the source
ninja -C build
## install - required to be able to run the application
ninja -C build install
## clean - removes built files to do a clean build
ninja -C build -t clean
## start from scratch
rm -rf build
# Old
## configure
./autogen.sh --prefix=/home/benoit/gnome
## build
make