Dependencies.txt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. Camelot relies on the following 3rd party libraries:
  2. - Boost 1.49
  3. - http://www.boost.org
  4. - Cg 3.1
  5. - http://developer.nvidia.com/cg-toolkit
  6. Place dependency files in:
  7. - Library include files in (BansheeRootDir)/Dependencies/Include
  8. - Static library files in (BansheeRootDir)/Dependencies/lib/(Platform)/(Configuration)
  9. - Dynamic library files in (BansheeRootDir)/bin/(Platform)/(Configuration)
  10. ----------------------------------------------------------------------------------
  11. Camelot plug-in dependencies:
  12. CamelotFBXImporter (optional) relies on:
  13. - FBX SDK 2013.3
  14. - http://usa.autodesk.com/fbx
  15. CamelotFreeImgImporter (optional) relies on:
  16. - FreeImage 3.13.1
  17. - http://freeimage.sourceforge.net
  18. CamelotFontImporter (optional) relies on:
  19. - Freetype 2.3.5
  20. - http://www.freetype.org
  21. - IMPORTANT NOTE: When compiling as static library make sure to define "FREETYPE2_STATIC". It is not defined by default
  22. in provided Visual Studio projects, which can cause a headache.
  23. CamelotOISInput relies on:
  24. - CamelotOIS - Slightly modified version of OIS 1.3 specifically for Camelot
  25. - Supplied with Camelot source code but compiled as a separate project into a dependency
  26. Place plug-in specific dependency files in:
  27. - Library include files in (BansheeRootDir)/(PluginDir)/Dependencies/Include
  28. - Static library files in (BansheeRootDir)/(PluginDir)/Dependencies/lib/(Platform)/(Configuration)
  29. - Dynamic library files in (BansheeRootDir)/bin/(Platform)/(Configuration)
  30. Legend:
  31. (BansheeRootDir) - Path to BansheeEngine folder
  32. (Platform) - Platform you're compiling for, e.g. x86, x64, etc.
  33. (Configuration) - Debug, Release, DebugRelease
  34. Other notes:
  35. - Some dependencies might not come with DebugRelease binaries, in which case use Release binaries (copy them to DebugRelease folder)
  36. Listed dependencies have not been provided with the engine source code.
  37. You will need to grab them manually from the specified links,
  38. (compile them, depending if library comes pre-compiled or not),
  39. and place them in the above specified folders.