Alexandre Guénette
Alexandre Guénette
Hi @xlla! On Ubuntu 18.04, all the tests pass. So, I'm not sure that the problem comes from the refactor of the yaml-cpp API. Have you tried to run the...
Hi @cjamin! Actually, there's no way to build and install `libpointmatcher` in `Release` and `Debug` mode separately, but you can use the flag `RelWithDebInfo` instead, which is a `Release` built...
> Are you saying there is no way to be able to build my program in Debug mode? Not really, what I was saying is that for the moment, there...
No problems! 😄 > Maybe I could specify a different CMAKE_INSTALL_PREFIX for the Debug and the Release version? You could do that, but if you do, I suggest you to...
@cjamin I'm sorry if my instructions were a bit confusing. Instead, I will give it to you as a series of steps in the command line. First, go in `libpointmatcher`'s...
Hi @skasperski! Did you solve your issue? If not, you can try this instead: ```cmake find_package(libpointmatcher REQUIRED) include_directories(${libpointmatcher_INCLUDE_DIRS}) add_library(pm_test test.cpp) target_link_libraries(pm_test PUBLIC ${libpointmatcher_LIBRARIES}) ```
Have you tried to configure your project using a new build directory? If it does not solve your issue, I would need to know which cmake's version you are using...
Hi @Seikegn! Can you add below's lines to the `demo_cmake` `CMakeLists.txt` file after the `find_package(libpointmatcher REQUIRED)` line and give me the output please? ```cmake message("libpointmatcher_INCLUDE_DIRS: ${libpointmatcher_INCLUDE_DIRS}\n") message("libpointmatcher_LIBRARIES: ${libpointmatcher_LIBRARIES}\n") ```
> @aguenette I assume you asked me to add the two lines and then run cmake .. Below is the direct output with cmake 3.18.4. Yes, that's what I meant,...
> Now libpointmatcher can work again. :tada: > But the issue about compiling in CGAL still exists. I tried to compile libpointmatcher on a Windows VM, but without success. I'm...