#include <IL\il.h>it says that it cant find the library. i copied the dlls to my windows\system folder, but still no luck somebody know how to use DevIL in microsoft windows with VS2008? any help will be apreciated. TIA
DevIL Library
Started by shinydarkstone, Jun 29 2009 02:54 AM
3 replies to this topic
#1 Members - Reputation: 100
Posted 29 June 2009 - 02:54 AM
hi, im stuck at the lesson 6 with DevIL library, i linked the dll to my project but when i do the include
Sponsor:
#2 Moderators - Reputation: 994
Posted 29 June 2009 - 04:10 AM
I think you need to download the Windows SDK version from here: http://openil.sourceforge.net/download.php and link to the *.lib files.
I can't test atm coz I don't have access to Windows/VC++ :)
I can't test atm coz I don't have access to Windows/VC++ :)
#3 GDNet+ - Reputation: 1106
Posted 29 June 2009 - 05:19 AM
The SDK is just a zip containing the link time libraries and headers, you'd still have to add the proper paths to those in Visual Studio (Tools->Options->Projects And Solutions->VC++ Directories->Show Directories for: Include files / Library Files).
If you had already done that, then I would use
instead of
For two reasons, first the <> are used for system headers, which il.h is not and second, because \ is Windows specific and thus, not portable.
If you had already done that, then I would use
#include "IL/il.h"
instead of
#include <IL\il.h>
For two reasons, first the <> are used for system headers, which il.h is not and second, because \ is Windows specific and thus, not portable.






