Remove KICAD_USE_SCH_IO_MANAGER build option from docs and build info.

This commit is contained in:
Wayne Stambaugh 2017-02-10 11:58:15 -05:00
parent 7ccdca5ced
commit 899fe08f20
2 changed files with 0 additions and 12 deletions

View File

@ -155,11 +155,6 @@ The KICAD_SPICE option is used to control if the Spice simulator interface for E
this option is enabled, it requires [ngspice][] to be available as a shared library. This option is
disabled by default.
## New schematic file format ## {#sch_io_mgr_opt}
The KICAD_USE_SCH_IO_MANAGER option is used to control if the new Eeschema I/O manager for handling
schematic and symbol library I/O is enabled. This option is disabled by default.
## STEP/IGES support for the 3D viewer ## {#oce_opt}
The KICAD_USE_OCE is used for the 3D viewer plugin to support STEP and IGES 3D models. Build tools

View File

@ -539,13 +539,6 @@ void dialog_about::OnCopyVersionInfo( wxCommandEvent& event )
msg_version << OFF;
#endif
msg_version << " KICAD_USE_SCH_IO_MANAGER=";
#ifdef KICAD_USE_SCH_IO_MANAGER
msg_version << ON;
#else
msg_version << OFF;
#endif
msg_version << " KICAD_USE_OCE=";
#ifdef KICAD_USE_OCE
msg_version << ON;