Jérémie Dumas

Results 223 comments of Jérémie Dumas

Answering my own question: it seems the error go away if I set `TBB_SANITIZE` to `thread`, which causes [__TBB_USE_ITT_NOTIFY](https://github.com/oneapi-src/oneTBB/blob/2110128e4e78647b0d299d07c82ac8e4273964f6/src/tbbmalloc/CMakeLists.txt#L42) to NOT be defined.

It's really about dependency management and whether each "PSM" should be considered to be a separate entity unrelated to the main "Geogram" library. Let's say I have two lib A...

Hi. I'm facing the same issue as described here. @jglick can you provide some guidance as to how this plugin should be updated to take advantage of https://github.com/jenkinsci/github-branch-source-plugin/pull/527 and publish...

If you already know where the problem happens, feel free to submit a PR that fixes the issues. I don't think we should worry about being compatible with the development...

There is no such script anymore, we usually add explicit templates manually. You can find the old script in the repo libigl/libigl-scripts, but I can't say that it still works....

There are other very annoying behavior with the `CmdLine` args. For example, `Delaunay::create()` tries to retrieve [CmdLine::get_arg("algo:delaunay")](https://github.com/BrunoLevy/geogram/blob/ec0a77e455435f365b7b9d5577dfbc6f732350a2/src/lib/geogram/delaunay/delaunay.cpp#L158), but this arg is only defined if one calls `import_arg_group_algo()`, which is not...

Ideally, a library shouldn't use any global at all. I'd prefer to have to manually create a `Context` object, and pass it around as needed, but I recognize that having...

@zfedoran could you confirm what's the license on your code snippet? This is really cool!

Well libigl now uses standard [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html) calls to download dependencies, so you can use variables such as [FETCHCONTENT_SOURCE_DIR_](https://cmake.org/cmake/help/latest/module/FetchContent.html#variable:FETCHCONTENT_SOURCE_DIR_%3CuppercaseName%3E) to provide a local folder override for a third-party dependency.