CompilingDependenciesManually.txt 4.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. This document lists all Banshee 3rd party libraries and provides information on how to compile them. It is meant to be used
  2. as a guide if you wish to recompile all the dependencies manually. Normally dependencies will be pre-compiled for all
  3. supported platforms and environments.
  4. ----------------------------------------------------------------------------------
  5. Core dependencies
  6. BansheeCore relies on:
  7. - NVIDIA Texture Tools 2.0.8
  8. - https://code.google.com/p/nvidia-texture-tools/
  9. - See NVTTCompilationGuide.txt on how to compile it for Banshee
  10. Place dependency files in:
  11. - Library include files in (BansheeRootDir)/Dependencies/(Project)/Include
  12. - Static library files in (BansheeRootDir)/Dependencies/(Project)/lib/(Platform)/(Configuration)
  13. - Dynamic library files in (BansheeRootDir)/bin/(Platform)/(Configuration)
  14. ----------------------------------------------------------------------------------
  15. Plug-in dependencies:
  16. Use the list below to find all dependencies used by specific projects in Banshee. Compilation of dependencies themselves are not explained unless there is something specific to take note of.
  17. All dependencies listed are shown with a specific version (the one Banshee was tested against), although many should work with newer versions as well, but that is up to you to test.
  18. BansheeFBXImporter (optional) relies on:
  19. - FBX SDK 2015.1 for VS2013, FBX SDK 2016.1 for VS2015
  20. - http://usa.autodesk.com/fbx
  21. BansheeFreeImgImporter (optional) relies on:
  22. - FreeImage 3.13.1
  23. - http://freeimage.sourceforge.net
  24. BansheeFontImporter (optional) relies on:
  25. - Freetype 2.3.5
  26. - http://www.freetype.org
  27. - IMPORTANT NOTE: When compiling as static library make sure to define "FREETYPE2_STATIC". It is not defined by default
  28. in provided Visual Studio projects, which can cause a headache.
  29. BansheeOISInput (optional) relies on:
  30. - BansheeOIS - Slightly modified version of OIS 1.3 specifically for Banshee
  31. - Source code supplied with Banshee dependencies (NOT with the source code for the rest of the engine - will be integrated eventually)
  32. BansheeD3D11RenderAPI & BansheeD3D9RenderAPI (both optional) rely on:
  33. - Microsoft DirectX SDK June 2010
  34. - http://www.microsoft.com/en-us/download/details.aspx?id=6812
  35. - After installing the SDK make sure DXSDK_DIR environment variable is set up pointing to the installation path
  36. - Windows SDK (Only required if on Windows 8 or higher)
  37. - Needed only for DirectX 11 debug layer
  38. - This also contains DirectX SDK so you don't need to install it separately.
  39. - Optionally if you just need the debug layers you can enable it separately in Windows 10 by going to:
  40. - Settings panel->System->Apps & features->Manage optional Features->Add a feature->Select "Graphics Tools"
  41. BansheeSL (optional) relies on:
  42. - Bison 2.7
  43. - Install as a tool dependency, in its own folder as Bison/bison.exe (+ any dependant files)
  44. - http://sourceforge.net/projects/winflexbison/files/
  45. - Flex 2.5.37
  46. - Install as a tool dependency, in its own folder as Flex/flex.exe
  47. - http://sourceforge.net/projects/winflexbison/files/
  48. BansheeMono (optional if not using scripting or editor) relies on:
  49. - Mono 4.4.0
  50. - http://www.mono-project.com/
  51. - See Mono-4.4.0-IntegrationGuide.txt for instructions how to compile and set it up
  52. BansheePhysX (optional) relies on:
  53. - PhysX 3.3
  54. - https://github.com/NVIDIAGameWorks/PhysX-3.3
  55. - You will need PhysX3, PhysX3Common, PhysX3Cooking and PhysX3CharacterKinematic libraries
  56. Place plug-in specific dependency files in:
  57. - Library include files in (BansheeRootDir)/Dependencies/(Project)/Include
  58. - Static library files in (BansheeRootDir)/Dependencies/(Project)/lib/(Platform)/(Configuration)
  59. - Tools (executables) in (BansheeRootDir)/Dependencies/(Project)/tools
  60. - Dynamic library files in (BansheeRootDir)/bin/(Platform)/(Configuration)
  61. ----------------------------------------------------------------------------------
  62. Scripts
  63. Various scripts located in /Scripts directory require Python 3.5 installed:
  64. - https://www.python.org/downloads/
  65. ----------------------------------------------------------------------------------
  66. Legend:
  67. (BansheeRootDir) - Path to BansheeEngine folder
  68. (Project) - Name of the project the dependency is for (e.g. BansheeCore, BansheeMono, etc.)
  69. (Platform) - Platform you're compiling for, e.g. x86, x64, etc.
  70. (Configuration) - Debug, OptimizedDebug, Release
  71. Other notes:
  72. - Some dependencies might not come with OptimizedDebug binaries, in which case use Release binaries (copy them to OptimizedDebug folder)
  73. - If you wish to compile managed assemblies using Microsoft compiler (e.g. using Visual Studio) yet still be able to debug
  74. the generated assemblies, you must install Mono 4.2., set up an environment variable MONO_INSTALL_DIR pointing to the Mono
  75. installation directory. When this is set up "pdb2mdb" script will trigger on next compile generating the needed debug symbols.