-
Notifications
You must be signed in to change notification settings - Fork 6.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[small-gicp] New port #39393
[small-gicp] New port #39393
Conversation
Please get failure logs for x86-windows here:
Please get failure logs for x64-osx here:
|
c48af9b
to
edf9965
Compare
OpenMP is not yet available through vcpkg.
All features are tested successfully in the following triplet:
The usage test passed on
|
Thank you @MonicaLiu0311, I have addressed the review comments. |
At present, the version information of your commit is inconsistent with your local one:
Please run
|
Ah, thank you for that. So just to confirm, basically any time I make a change, I also need to rerun |
Yes, you need to regenerate new version information before each push. These version information are generated based on your latest commit (modifications in the |
The AppleClang OpenMP issue is actually due to a bug I introduced, it appears. Sorry about that! Use this patch instead: --- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,7 +22,7 @@
option(ENABLE_COVERAGE "Enable coverage" OFF)
# Dependency options
-set(BUILD_WITH_OPENMP CACHE STRING "Build with OpenMP" "auto")
+set(BUILD_WITH_OPENMP "auto" CACHE STRING "Build with OpenMP")
option(BUILD_WITH_TBB "Build with TBB" OFF)
option(BUILD_WITH_PCL "Build with PCL (required for benchmark and test only)" OFF)
option(BUILD_WITH_FAST_GICP "Build with fast_gicp (required for benchmark and test only)" OFF) I opened a PR as well: koide3/small_gicp#76 |
Thanks for the new port! |
I just pushed a new tag |
If this PR adds a new port, please uncomment and fill out this checklist:
find_package
calls are REQUIRED, are satisfied byvcpkg.json
's declared dependencies, or disabled with CMAKE_DISABLE_FIND_PACKAGE_Xxx.vcpkg.json
matches what upstream says.vcpkg.json
matches what upstream says../vcpkg x-add-version --all
and committing the result.