Engine:CVAR lib path: Difference between revisions

no edit summary
No edit summary
Line 30: Line 30:
The path is either a full OS file system path to the library location, or a path relative to the launch location, which is the location of the executable for the engine.
The path is either a full OS file system path to the library location, or a path relative to the launch location, which is the location of the executable for the engine.


In some configurations the path is relative to the current directory and not necessarily the actual engine start location.
In some configurations the path is relative to the current directory and not necessarily the actual engine start location. The 'lib_path' will be concantinated verbatim to the calcualted library file name to create the final library load path. 
  d:\install\engine\lib\namex86.dll
set lib_path './lib/'
becomes: ./lib/namex86.dll
install: d:\install\engine
  effective OS load: d:\install\engine\lib\namex86.dll


== Examples ==
== Examples ==