Dependencies.txt 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. This document lists all Banshee 3rd party libraries and provides information on how to compile
  2. and include them in your own project. It is meant to be used as a guide to create your own Banshee
  3. project file, potentially for compiler/IDE other than Visual Studio. Normally these files will be
  4. provided pre-compiled for you.
  5. BansheeEngine relies on the following 3rd party libraries:
  6. - Mono 3.8.0
  7. - http://www.mono-project.com
  8. - See MonoIntegrationGuide.txt on how to compile & integrate Mono
  9. BansheeCore relies on the following 3rd party libraries:
  10. - NVIDIA Texture Tools 2.0.8
  11. - https://code.google.com/p/nvidia-texture-tools/
  12. - See NVTTCompilationGuide.txt on how to compile it for Banshee
  13. Place dependency files in:
  14. - Library include files in (BansheeRootDir)/Dependencies/Include
  15. - Static library files in (BansheeRootDir)/Dependencies/lib/(Platform)/(Configuration)
  16. - Dynamic library files in (BansheeRootDir)/bin/(Platform)/(Configuration)
  17. ----------------------------------------------------------------------------------
  18. Banshee plug-in dependencies:
  19. BansheeFBXImporter (optional) relies on:
  20. - FBX SDK 2015.1
  21. - http://usa.autodesk.com/fbx
  22. BansheeFreeImgImporter (optional) relies on:
  23. - FreeImage 3.13.1
  24. - http://freeimage.sourceforge.net
  25. BansheeFontImporter (optional) relies on:
  26. - Freetype 2.3.5
  27. - http://www.freetype.org
  28. - IMPORTANT NOTE: When compiling as static library make sure to define "FREETYPE2_STATIC". It is not defined by default
  29. in provided Visual Studio projects, which can cause a headache.
  30. BansheeOISInput (optional) relies on:
  31. - BansheeOIS - Slightly modified version of OIS 1.3 specifically for Banshee
  32. - Supplied with Banshee source code but compiled as a separate project into a dependency
  33. BansheeD3D11RenderAPI & BansheeD3D9RenderAPI (both optional) rely on:
  34. - Microsoft DirectX SDK June 2010
  35. - http://www.microsoft.com/en-us/download/details.aspx?id=6812
  36. - After installing the SDK make sure DXSDK_DIR environment variable is set up pointing to the installation path
  37. - Windows SDK (Only required if on Windows 8 or higher)
  38. - Needed for DirectX 11 debug layer
  39. - This also contains DirectX SDK so you don't need to install it separately.
  40. BansheeSL (optional) relies on:
  41. - Bison 2.7
  42. - Install as a tool dependency, in its own folder as Bison/bison.exe (+ any dependant files)
  43. - http://sourceforge.net/projects/winflexbison/files/
  44. - Flex 2.5.37
  45. - Install as a tool dependency, in its own folder as Flex/flex.exe
  46. - http://sourceforge.net/projects/winflexbison/files/
  47. Place plug-in specific dependency files in:
  48. - Library include files in (BansheeRootDir)/(PluginDir)/Dependencies/Include
  49. - Static library files in (BansheeRootDir)/(PluginDir)/Dependencies/lib/(Platform)/(Configuration)
  50. - Tools (executables) in (BansheeRootDir)/(PluginDir)/Dependencies/tools
  51. - Dynamic library files in (BansheeRootDir)/bin/(Platform)/(Configuration)
  52. ----------------------------------------------------------------------------------
  53. Legend:
  54. (BansheeRootDir) - Path to BansheeEngine folder
  55. (Platform) - Platform you're compiling for, e.g. x86, x64, etc.
  56. (Configuration) - Debug, Release, DebugRelease
  57. Other notes:
  58. - Some dependencies might not come with DebugRelease binaries, in which case use Release binaries (copy them to DebugRelease folder)
  59. - If you wish to compile managed assemblies using Microsoft compiler (e.g. using Visual Studio) yet still be able to debug
  60. the generated assemblies, you must install Mono 3.8.0., set up an environment variable MONO_INSTALL_DIR pointing to the Mono
  61. installation directory. When this is set up "pdb2mdb" script will trigger on next compile generating the needed debug symbols.