I am trying to run and compile one application which needs to use the third party sdk_linux32.
But its missing the header file always even i did what mentioned in readme file. Any idea what am i missing?
/*Manual says this following should install the SDK without any problem so i did*/
$cd sdk_linux32
$sudo mkdir /usr/lib/sdk_linux32
$sudo cp -r build/bin/release/* /usr/lib/sdk_linux32
$sudo ldconfig /usr/lib/sdk_linux32
$g++ main.cpp -lsdk_linux32 -o MyApp
main.cpp ... fatal error: sdk_linux/Core.h: No such file or directory
compilation terminated.
main.cpp:
#include <sdk_linux/Core.h>
int main()
{
return 0;
}
As a guess – try below – you need to tell gcc where the header files are
EDITED
And looking at your latest comment – you also need to tell the linker where the library is located