7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 14:31:42 +00:00

Add environment variable for configuring stock data home

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15687
This commit is contained in:
Jon Evans 2024-03-05 23:18:06 -05:00
parent 4ffbef5e42
commit 9b54537e38

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__ )