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
For the DevILNet project's Build Events, Post-Build command I had to put quotes around the copy command arguments in order for it to work.
from
copy $(ProjectDir)..\Libs\x86\DevIL.dll $(OutDir)
copy $(ProjectDir)..\Libs\x86\ILU.dll $(OutDir)
to
copy "$(ProjectDir)..\Libs\x86\DevIL.dll" "$(OutDir)"
copy "$(ProjectDir)..\Libs\x86\ILU.dll" "$(OutDir)"
I am compiling with VS2013 w update 3
-Steve
The text was updated successfully, but these errors were encountered:
For the DevILNet project's Build Events, Post-Build command I had to put quotes around the copy command arguments in order for it to work.$(ProjectDir)..\Libs\x86\DevIL.dll $ (OutDir)$(ProjectDir)..\Libs\x86\ILU.dll $ (OutDir)
from
copy
copy
to
copy "$(ProjectDir)..\Libs\x86\DevIL.dll" "$(OutDir)"
copy "$(ProjectDir)..\Libs\x86\ILU.dll" "$(OutDir)"
I am compiling with VS2013 w update 3
-Steve
The text was updated successfully, but these errors were encountered: