Add environment variable for configuring stock data home

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15687


(cherry picked from commit 9b54537e38)
This commit is contained in:
Jon Evans 2024-03-05 23:18:06 -05:00
parent af3654d389
commit c7b7830495
1 changed files with 4 additions and 0 deletions

View File

@ -169,6 +169,10 @@ wxString PATHS::GetStockDataPath( bool aRespectRunFromBuildDir )
path = GetExecutablePath() + wxT( ".." );
#endif
}
else if( wxGetEnv( wxT( "KICAD_STOCK_DATA_HOME" ), &path ) && !path.IsEmpty() )
{
return path;
}
else
{
#if defined( __WXMAC__ )