Maarten
Maarten
I'll have a look at adding this. I'm not really familiar with these large file defines on Linux, but I suppose it will be like this: * Add an equivalent...
I created #23336 that does the things I listed above.
Looks good to me, it works fine on Ubuntu. I also don't have OpenBSD to check. One small remark, you could move the `if(HAVE_LIBC)` outside the `if(HAVE_LIBM)`. For those very...
I'm not sure if it is matio's job to provide search locations. Normally it's up to the user to make sure dependencies are available and findable. And in your proposal...
I think HDF5 only provides installers for the msvc libraries? Then you might want to limit it to `MSVC` instead of `WIN32`. Though I also see clang and intel compiler...
> I have no idea whether we can force the use of Release for a subdirectory when the build type is RelWithDebugInfo Not sure if I understand the problem, is...
I'll try to reproduce it, and see what's going on with both problems.
Small update after I struggled with linking errors for two hours. Apparently this https://github.com/wxWidgets/wxWidgets/blob/7150e6ecb385f6b76c7e2d81ff030305db51b344/build/cmake/lib/webview_chromium/CMakeLists.txt#L83 overwrites all the compile options set by `libcef_dll_wrapper` (including `-fPIC`), instead of appending to it. I...
Still can't reproduce it. I made the webview sample a stand-alone app, and added wxWidgets with `add_subdirectory`. Then I built everything (including downloading and building libcef_dll_wrapper) with `-DCMAKE_BUILD_TYPE=RelWithDebInfo`. All builds...
> To try to salvage at least something from all this, should we perhaps check if the build type is one of the known strings? I think I should even...