Open CargoCultism opened 3 years ago
Manjaro:
pacman -Ql libnoise
: /usr/lib, /usr/include/noise
Manjaro:
g++ -I/usr/include/noise teramain.cxx -L/usr/lib/ -lnoise
works
Library handling: find_library command, recommended approach to give prio to static lib over shared libraries:
find_library(FOOLIB libfoo.a)
find_library(FOOLIB foo)
On manjaro,
find_library(libnoise REQUIRED)
fails withCould not find libnoise using the following names: -- Configuring incomplete, errors occurred!