Better late than never....
When setting up the Dev Environment batch file per the instructions in the XSI SDK help, dont enclose the XSISDK_ROOT path in quotes, that will let the OS resolve the path properly.
So the help docs says to do this
Code: Select all
@echo off
call "C:\Program Files\Autodesk\Softimage 2013 SP1\Application\bin\Setenv.bat"
call "C:\Program Files\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
set PATH
set XSISDK_ROOT="C:\Program Files\Autodesk\Softimage 2013 SP1\XSISDK"
"C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\VCExpress.exe" /useenv
echo on
..so you want to remove the "" quotes around the XSISDK_ROOT path, so your batch file looks like this
Code: Select all
@echo off
call "C:\Program Files\Autodesk\Softimage 2013 SP1\Application\bin\Setenv.bat"
call "C:\Program Files\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
set PATH
set XSISDK_ROOT=C:\Program Files\Autodesk\Softimage 2013 SP1\XSISDK
"C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\VCExpress.exe" /useenv
echo on
...that way when the MSVC project is loaded, the import sub directories can be appended to the XSISDK_ROOT appropriately.
I've had to turn back to C++ because some of the methods I need dont have Python bindings yet.