Re-enable KICAD_SCRIPTING_WXPYTHON

This keeps wxpython behind a build flag for platforms (mingw) that do
not yet support it.
This commit is contained in:
Seth Hillbrand
2021-04-23 13:13:03 -07:00
parent 68a5d5dc01
commit e050d42658
3 changed files with 19 additions and 2 deletions
+4
View File
@@ -93,7 +93,11 @@ SCRIPTING::~SCRIPTING()
bool SCRIPTING::IsWxAvailable()
{
#ifdef KICAD_SCRIPTING_WXPYTHON
return true;
#else
return false;
#endif
}
bool SCRIPTING::scriptingSetup()