Browse Source

Enable IPC API by default

pcb_db
Jon Evans 11 months ago
parent
commit
250fa52474
  1. 4
      CMakeLists.txt
  2. 6
      common/build_version.cpp

4
CMakeLists.txt

@ -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"

6
common/build_version.cpp

@ -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…
Cancel
Save