| 1234567891011121314151617181920212223242526272829303132333435363738 |
- Camelot relies on the following 3rd party libraries:
- - Boost 1.49
- - http://www.boost.org
- - Cg 3.1
- - http://developer.nvidia.com/cg-toolkit
- Place dependency files in:
- - Library include files in (CamelotRootDir)/Dependencies/Include
- - Static library files in (CamelotRootDir)/Dependencies/lib/Debug and (CamelotRootDir)/Dependencies/lib/Release
- - Dynamic library files in (CamelotRootDir)/bin/Debug and (CamelotRootDir)/bin/Release (Possibly others if you define other configuration types)
- ----------------------------------------------------------------------------------
- Camelot plug-in dependencies:
- CamelotFBXImporter (optional) relies on:
- - FBX SDK 2013.3
- - http://usa.autodesk.com/fbx
- CamelotFreeImgImporter (optional) relies on:
- - FreeImage 3.13.1
- - http://freeimage.sourceforge.net
- Place plug-in specific dependency files in:
- - Library include files in (CamelotRootDir)/(PluginDir)/Dependencies/Include
- - Static library files in (CamelotRootDir)/(PluginDir)/Dependencies/lib/Debug and (CamelotRootDir)/(PluginDir)/Dependencies/lib/Release
- - Dynamic library files in (CamelotRootDir)/bin/Debug and (CamelotRootDir)/bin/Release (Possibly others if you define other configuration types)
- ----------------------------------------------------------------------------------
- Other notes:
- - If possible all dependencies should be compiled without unicode or multi-character support, in case you experience any issues when passing strings between
- module boundaries.
- Listed dependencies have not been provided with the engine source code.
- You will need to grab them manually from the specified links,
- (compile them, depending if library comes pre-compiled or not),
- and place them in the above specified folders.
|