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
is not going to work because CMake will have no way to find the installation of Glog we did in a previous step.
Analogously to the commands seen above, I fixed this by passing -DGLOG_BASE_PATH="${PKGS_PATH}/glog/install" within install.shand modifiedsrc/nvblox_torch/cpp/CMakeLists.txt` to include
Issue Details
While installing cuRobo + IsaacSim + NVBlox natively, I noticed a couple of bugs/typos in the installation guide.
In the following, I refer to the instructions below Installing nvblox for PRECXX11_ABI and Isaac Sim
In the first line, there is a missing
&&
betweencd ${PKGS_PATH}/nvblox/nvblox
andmkdir build
.But what's more severe:
is not going to work because CMake will have no way to find the installation of Glog we did in a previous step.
Analogously to the commands seen above, I fixed this by passing
-DGLOG_BASE_PATH="${PKGS_PATH}/glog/install" within
install.shand modified
src/nvblox_torch/cpp/CMakeLists.txt` to includeAlso make sure that
target_link_libraries
correctly uses this variable afterwards by writing it uppercase.The text was updated successfully, but these errors were encountered: