Closed Ashwinning closed 9 years ago
Hey Ashwin, I think Sergey (TakeTwo) is on Linux so I'll take a pop at answering this. Please can you check where your ${RSSDK} is pointing it should be somewhere along the lines of C:\Program Files (x86)\Intel\RSSDK. I am running the same version of the RSSDK and can assure you those folders and libraries are definitely there. I suggest reinstalling the SDK if the path is correct and for future reference lib files should be .lib files, .cpp are the sources. Let me know if you still have problems after a (clean) reinstall
Hi, I had this migrating from version 5 to version 6. Actually, I was about to ask you, Sebastian, the same question :D The solution is to completely uninstall the old version and then make a fresh clean install of the new one. On Oct 6, 2015 9:57 PM, "Sebastian Andraos" notifications@github.com wrote:
Hey Ashwin, I think Sergey (TakeTwo) is on Linux so I'll take a pop at answering this. Please can you check where your ${RSSDK} is pointing it should be somewhere along the lines of C:\Program Files (x86)\Intel\RSSDK. I am running the same version of the RSSDK and can assure you those folders and libraries are definitely there. I suggest reinstalling the SDK if the path is correct and for future reference lib files should be .lib files, .cpp are the sources.
— Reply to this email directly or view it on GitHub https://github.com/taketwo/rs/issues/6#issuecomment-145979985.
Hi Sebastian & Sergey, Thanks for the super quick response guys!
I actually don't see anything for ${RSSDK} anywhere.
I do see${RSSDK_DIR}
as defined by
find_path(RSSDK_DIR include/pxcversion.h
PATHS "$ENV{RSSDK_DIR}"
...
...
)
pointing to the correct location (C:\Program Files (x86)\Intel\RSSDK in my case) as the environment variable is set.
I'll try reinstalling the SDK and report back.
Thanks!
CMake configured and generated like a charm after the SDK reinstall.
A bit surprising that I was missing the lib
& include
folders before.
Thanks for the help guys,
Greatly appreciate it!
Hey Taketwo,
Wanted to ask you which version of RSSDK you were using.
I'm on the latest version (r4_6.0.21.6598 on Windows) and I'm facing some issues.
First, I noticed that there are no
include
andlib
folders in the root of theRSSDK_DIR
directory/folder.However, there is an
include
folder at${RSSDK_DIR}/opensource/include
. There also seems to be ansrc
folder at${RSSDK_DIR}/opensource/src
which looks like this:I changed line 24 in
FindRSSDK
fromset(RSSDK_INCLUDE_DIRS ${RSSDK_DIR}/include)
toset(RSSDK_INCLUDE_DIRS ${RSSDK_DIR}/opensource/include)
to solve some cmake errors, but can't seem to fix thelib
folder issue in libraries.Trying to throw in libpxc and libpxc.cpp into a new folder
${RSSDK_DIR}/lib
didn't help.Here's the error cmake throws: (using CMake 3.3.1)
And the CMakeOutput.txt in case it might be of any help.
I would appreciate any help possible.
Thanks!