CMake: Installing library and linking against prebuild library
Use-case: You have a library as source code, want to install it on your system (user-/system-wide), and then make use of it from another place/folder/repo. ...
Use-case: You have a library as source code, want to install it on your system (user-/system-wide), and then make use of it from another place/folder/repo. ...
Old school libraries use splitting into hpp/cpp files. Mayor drawbacks: leaking of macros (hpp can be different at library's consumer side than at library p...
In-depth tutorial: https://www.thegeekstuff.com/2012/08/gprof-tutorial/ Summary: Compile with -pg compiler flag (gcc/clang). Executing binary gives gmon.o...
one can set terminator up to start with pre-defined layout and terminals. important distinction: layout defines where and how a window should be setup and a...
Install mold on your linux box. Enable mold for gcc/clang by supplying -fuse-ld=mold, e.g. clang -fuse-ld=mold a.cpp Enable in CMake by supplying argu...