Why Nostr? What is Njump?
2024-06-07 17:34:05

Herzenschein++ 🩵⭐ on Nostr: Tech thing that bothers me more than it should: mkdir build cd build cmake .. ...

Tech thing that bothers me more than it should:

mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
make install


stahp

do this instead:

cmake -B build/
cmake --build build/
cmake --install build/ --prefix /usr


same with meson:

meson setup build/
meson compile -C build/
meson install -C build --destdir /usr


#cmake #meson
Author Public Key
npub1nka95gzfess25j950zydd0pftw43ecw6z3d976majeqg20zwsasqzvu9k9