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

Enable IPC API by default

This commit is contained in:
Jon Evans 2024-11-03 09:12:46 -05:00
parent 7bd8cd9721
commit 250fa52474
2 changed files with 8 additions and 2 deletions

View File

@ -264,8 +264,8 @@ option( KICAD_GAL_PROFILE
OFF )
option( KICAD_IPC_API
"Enable experimental IPC API"
OFF )
"Enable IPC API"
ON )
option( KICAD_IDF_TOOLS
"Build additional idf tools"

View File

@ -296,6 +296,12 @@ wxString GetVersionInfoData( const wxString& aTitle, bool aHtml, bool aBrief )
aMsg << indent4 << "KICAD_USE_EGL=" << ON;
#endif
#ifdef KICAD_IPC_API
aMsg << indent4 << "KICAD_IPC_API=" << ON;
#else
aMsg << indent4 << "KICAD_IPC_API=" << OFF;
#endif
#ifndef NDEBUG
aMsg << indent4 << "KICAD_STDLIB_DEBUG=";
#ifdef KICAD_STDLIB_DEBUG