After the closed post https://discord.com/channels/331718482485837825/1284523531748638804
I try to import the compiled project into my own project.
It reports error.
I add this into my CMakeLists.txt
set(PCL_DIR "D:/myfile/software/Libraries/lib-bin/pcl/share/pcl-1.14")
find_package(PCL 1.3 REQUIRED)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})
add_definitions(${PCL_DEFINITIONS})
...
target_link_libraries(${PROJECT_NAME}
...
${PCL_LIBRARIES}
)
Then
