mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Added support for debug and ignored libraries
Updated Project Generator to allow adding different Release/Debug libraries. Also added ability to specify libraries for Ignore Default Libraries field. Only Visual Studio templates have been updated.
This commit is contained in:
parent
1d4ed1da0f
commit
b04f060ede
9 changed files with 62 additions and 45 deletions
|
|
@ -255,10 +255,16 @@ class Generator
|
|||
array_push( self::$project_cur->lib_dirs, $dir );
|
||||
}
|
||||
|
||||
static function addProjectLibInput( $lib )
|
||||
static function addProjectLibInput( $lib, $libDebug = null )
|
||||
{
|
||||
array_push( self::$project_cur->libs, $lib );
|
||||
array_push( self::$project_cur->libsDebug, $libDebug != null ? $libDebug : $lib );
|
||||
}
|
||||
|
||||
static function addProjectIgnoreDefaultLib( $lib )
|
||||
{
|
||||
array_push( self::$project_cur->libsIgnore, $lib );
|
||||
}
|
||||
|
||||
static function includeLib( $lib )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue