Brecht Sanders
Brecht Sanders
Why should I put any efforts in such an old version of GCC? GCC 12 is about to be released, that is where my focus will be. But maybe I...
Why do you `set(ENV{PKG_CONFIG_PATH} /usr/local/lib/pkgconfig)`? That would override what people already have in the `PKG_CONFIG_PATH` environment variable... The name of he library to find with `pkg_check_modules` depends in the name...
I made a first attempt to generate proper .cmake files and fixed an issue with the .pc files. Can you try if these changes work for you?
Sorry, there was a bug in `XLSXIOREAD_ROOT` which should now be fixed.
Can you try again now?
On which platform(s) is this standard behaviour? Homebrew? Should it then look for the libraries in `/opt/xlsxio/lib` and the includes in in `/opt/xlsxio/include`?
Documentation says cmake will look in all paths listed in `CMAKE_SYSTEM_PREFIX_PATH`, so if you install under `/usr/local` (or `/opt`) they way it is normally done, and not under an additional...
From what I read there adding `NAMES xlsxio` to `find_package()` might do the trick. Can you try this? ``` find_package(libxlsxio_read REQUIRED NAMES xlsxio) ``` Or if that doesn't work maybe:...
I'm not familiar with how C/C++ integrates with Node.js. Note however XLSX I/O also comes with a Makefile that you can run without CMake. DOesn't that work?
Can you help me understand how/why a C library like this can be used from Node.js? I though that was a JavaScript engine.