You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmake_minimum_required(VERSION 3.5)
project(bindings)
find_package(PCL COMPONENTS common REQUIRED) # depends on usage
# We can replace `find_package` with `add_subdirectory`, depending on usage.
# https://pybind11.readthedocs.io/en/stable/compiling.html#find-package-vs-add-subdirectory
find_package(pybind11)
pybind11_add_module(pcl binded_file.cpp)
target_link_libraries(pcl PRIVATE ${PCL_LIBRARIES})
Make a single script that handles staged as well as end-2-end generation of assets
This will allow there to be 4 components:
Split off from #11
This involves creating a separate script, addressing the issue with
compile_database_path
and adding a simple cmake generatorThe text was updated successfully, but these errors were encountered: