Add environment variable for configuring stock data home
Fixes https://gitlab.com/kicad/code/kicad/-/issues/15687
This commit is contained in:
parent
4ffbef5e42
commit
9b54537e38
|
@ -169,6 +169,10 @@ wxString PATHS::GetStockDataPath( bool aRespectRunFromBuildDir )
|
||||||
path = GetExecutablePath() + wxT( ".." );
|
path = GetExecutablePath() + wxT( ".." );
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
else if( wxGetEnv( wxT( "KICAD_STOCK_DATA_HOME" ), &path ) && !path.IsEmpty() )
|
||||||
|
{
|
||||||
|
return path;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#if defined( __WXMAC__ )
|
#if defined( __WXMAC__ )
|
||||||
|
|
Loading…
Reference in New Issue