Ive just started using the new LWJGL3 version with a module layout for libraries.
I was wondering if it was possible to have a native folder layout like:
natives/<module name>/file.dll,.so...
that way the native folder will only need to be setup once, as long as the module name is hardcoded into the library loading code within LWJGL.
Currently for every module you use with a native you then need to spend time locating the native. As far as I know on Eclipse I had to uncompress all the jar files containing the native files as well.
Its not a big deal, but it would make for an easier setup if someone wanted to simply import all the libraries into their project when first learning LWJGL, as they would only need to select the 1 native folder for the LWJGL library