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:
parent
7bd8cd9721
commit
250fa52474
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user