Allow launching standalone procs from build dir
This commit is contained in:
parent
874be359e0
commit
181100fe44
|
@ -64,6 +64,16 @@ wxString FindKicadFile( const wxString& shortname )
|
||||||
if( wxFileExists( fullFileName ) )
|
if( wxFileExists( fullFileName ) )
|
||||||
return fullFileName;
|
return fullFileName;
|
||||||
|
|
||||||
|
if( wxGetEnv( wxT( "KICAD_RUN_FROM_BUILD_DIR" ), nullptr ) )
|
||||||
|
{
|
||||||
|
wxFileName buildDir( Pgm().GetExecutablePath(), shortname );
|
||||||
|
buildDir.RemoveLastDir();
|
||||||
|
buildDir.AppendDir( shortname );
|
||||||
|
|
||||||
|
if( wxFileExists( buildDir.GetFullPath() ) )
|
||||||
|
return buildDir.GetFullPath();
|
||||||
|
}
|
||||||
|
|
||||||
// Test the presence of the file in the directory shortname
|
// Test the presence of the file in the directory shortname
|
||||||
// defined by the environment variable KiCad.
|
// defined by the environment variable KiCad.
|
||||||
if( Pgm().IsKicadEnvVariableDefined() )
|
if( Pgm().IsKicadEnvVariableDefined() )
|
||||||
|
|
Loading…
Reference in New Issue