Fix extension of files referenced by header#4
Open
awesomebytes wants to merge 2 commits intodimatura:masterfrom
Open
Fix extension of files referenced by header#4awesomebytes wants to merge 2 commits intodimatura:masterfrom
awesomebytes wants to merge 2 commits intodimatura:masterfrom
Conversation
pyrosmsg.h was pointing to files with the wrong extension
Fixes:
```Errors << pyrosmsg:check /home/sam/workspaces/roscpp_py_ws/logs/pyrosmsg/build.check.071.log
CMake Error at /opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
Could not find a package configuration file provided by "pybind11" with any
of the following names:
pybind11Config.cmake
pybind11-config.cmake
Add the installation prefix of "pybind11" to CMAKE_PREFIX_PATH or set
"pybind11_DIR" to a directory containing one of the above files. If
"pybind11" provides a separate development package or SDK, be sure it has
been installed.
Call Stack (most recent call first):
CMakeLists.txt:6 (find_package)
```
Author
|
I also remembered another error that was quickly fixed: Errors << pyrosmsg:check /home/sam/workspaces/roscpp_py_ws/logs/pyrosmsg/build.check.071.log
CMake Error at /opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
Could not find a package configuration file provided by "pybind11" with any
of the following names:
pybind11Config.cmake
pybind11-config.cmake
Add the installation prefix of "pybind11" to CMAKE_PREFIX_PATH or set
"pybind11_DIR" to a directory containing one of the above files. If
"pybind11" provides a separate development package or SDK, be sure it has
been installed.
Call Stack (most recent call first):
CMakeLists.txt:6 (find_package)(Added to this PR) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I... don't really know how this was working for anyone?
Or maybe it's a weird behaviour of my system and .h and .hpp should be detected anyways?
Oh well, this fixed it for me. It corrects the error (for google searches):
It took me embarrassingly long to figure it out.