README.win 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Where do I find the project files ?
  2. -----------------------------------------
  3. MSVC++ projects are in DevIL\projects\vc8 and DevIL\projects\vc9.
  4. If compiling with Cygwin or MinGW, use the instructions in README.unix.
  5. The IL_NO_XXX #define's:
  6. ------------------------
  7. A user can recompile this library without complete image support in it. For
  8. example, if your project does not use .jpg files, you can uncomment
  9. #define IL_NO_JPG at the top of il/il.h, recompile the library, and no .jpg
  10. support will be added, meaning quicker compiles and a smaller library.
  11. The ILUT_USE_XXX #define's:
  12. ---------------------------
  13. To disable support for a specific API, edit IL/ilut.h and comment the
  14. corresponding #define. Per example, to disable OpenGL functions support,
  15. add // in front of the line that reads:
  16. #define ILUT_USE_OPENGL
  17. Libraries needed to compile DevIL* :
  18. -----------------------------------
  19. Libraries.txt (included with the DevIL distribution) lists all libraries needed
  20. to properly compile DevIL.
  21. Precompiled versions and sources of all libraries needed to compile DevIL are
  22. available at http://openil.sourceforge.net/libs/LibCompiled.zip and
  23. http://openil.sourceforge.net/libs/LibSrc.zip , respectively.
  24. Installation:
  25. -------------
  26. Just unzip and compile other libs included if needed.
  27. Please also refer to MSVC++.txt for further instructions if you are using
  28. Microsoft Visual C++.