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
It looks like the install directory changed with the Spinnaker update (probably from 1.x to 2.x ). I got an error during the compilation saying it could not find #include <Spinnaker.h>. The solution for me was to change line 110 in CMakeLists.txt from:
# include_directories(${PGR_DIR}/include/spinnaker) # for ubuntu default install dir
to:
include_directories(${PGR_DIR}/include) # for ubuntu default install dir
The text was updated successfully, but these errors were encountered:
floesche
added a commit
to floesche/fictrac
that referenced
this issue
Jan 19, 2023
Check the location of spinnaker headers and change the path accordingly.
This builds on the suggestion in
rjdmoore#13 by @tlmohren, but provides
a fallback for earlier spinnaker versions.
floesche
added a commit
to floesche/fictrac
that referenced
this issue
Jan 19, 2023
Check the location of spinnaker headers and change the path accordingly.
This builds on the suggestion in
rjdmoore#13 by @tlmohren, but provides
a fallback for earlier spinnaker versions.
It looks like the install directory changed with the Spinnaker update (probably from 1.x to 2.x ). I got an error during the compilation saying it could not find #include <Spinnaker.h>. The solution for me was to change line 110 in CMakeLists.txt from:
to:
The text was updated successfully, but these errors were encountered: