Codebase list gnome-system-monitor / upstream/3.35.90 HACKING
upstream/3.35.90

Tree @upstream/3.35.90 (Download .tar.gz)

HACKING @upstream/3.35.90raw · history · blame

# 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