Move deprectated version of Spice parser/driver out of the way.

This commit is contained in:
Jean-Paul Chaput 2021-06-20 11:21:50 +02:00
parent 68d957fe3a
commit eeda81f746
9 changed files with 9 additions and 10 deletions

View File

@ -20,13 +20,12 @@
${CRLCORE_SOURCE_DIR}/src/ccore/ispd04 ${CRLCORE_SOURCE_DIR}/src/ccore/ispd04
${CRLCORE_SOURCE_DIR}/src/ccore/ispd05 ${CRLCORE_SOURCE_DIR}/src/ccore/ispd05
${CRLCORE_SOURCE_DIR}/src/ccore/iccad04 ${CRLCORE_SOURCE_DIR}/src/ccore/iccad04
${CRLCORE_SOURCE_DIR}/src/ccore/cspice #${CRLCORE_SOURCE_DIR}/src/ccore/cspice
${CRLCORE_SOURCE_DIR}/src/ccore/lefdef ${CRLCORE_SOURCE_DIR}/src/ccore/lefdef
${CRLCORE_SOURCE_DIR}/src/ccore/blif ${CRLCORE_SOURCE_DIR}/src/ccore/blif
${CRLCORE_SOURCE_DIR}/src/ccore/alliance/ap ${CRLCORE_SOURCE_DIR}/src/ccore/alliance/ap
${CRLCORE_SOURCE_DIR}/src/ccore/alliance/vst ${CRLCORE_SOURCE_DIR}/src/ccore/alliance/vst
${CRLCORE_SOURCE_DIR}/src/ccore/cif ${CRLCORE_SOURCE_DIR}/src/ccore/cif
${CRLCORE_SOURCE_DIR}/src/ccore/spice
${CRLCORE_SOURCE_DIR}/src/ccore/liberty ${CRLCORE_SOURCE_DIR}/src/ccore/liberty
${CRLCORE_SOURCE_DIR}/src/ccore/toolbox ${CRLCORE_SOURCE_DIR}/src/ccore/toolbox
${HURRICANE_INCLUDE_DIR} ${HURRICANE_INCLUDE_DIR}
@ -106,10 +105,10 @@
ToolEngine.cpp ToolEngine.cpp
GraphicToolEngine.cpp GraphicToolEngine.cpp
) )
set ( spice_cpps spice/SpiceParser.cpp #set ( spice_cpps spice/SpiceParser.cpp
spice/SpiceDriver.cpp # spice/SpiceDriver.cpp
spice/Spice.cpp # spice/Spice.cpp
) # )
set ( bookshelf_cpps bookshelf/BookshelfParser.cpp set ( bookshelf_cpps bookshelf/BookshelfParser.cpp
bookshelf/BookshelfDriver.cpp bookshelf/BookshelfDriver.cpp
) )
@ -297,7 +296,7 @@
${ispd04_cpps} ${ispd04_cpps}
${ispd05_cpps} ${ispd05_cpps}
${blif_cpps} ${blif_cpps}
${spice_cpps} #${spice_cpps}
${lefdef_cpps} ${lefdef_cpps}
${openaccess_cpps} ${openaccess_cpps}
) )

View File

@ -21,7 +21,7 @@
#include "crlcore/ParsersDrivers.h" #include "crlcore/ParsersDrivers.h"
#include "Ap.h" #include "Ap.h"
#include "Vst.h" #include "Vst.h"
#include "Spice.h" //#include "Spice.h"
#include "openaccess/OpenAccess.h" #include "openaccess/OpenAccess.h"
@ -171,7 +171,7 @@ namespace CRL {
registerSlot ( "vst" , (CellParser_t*)vstParser , "vbe" ); registerSlot ( "vst" , (CellParser_t*)vstParser , "vbe" );
//registerSlot ( "vst" , (CellParser_t*)vstParser , "vhd" ); //registerSlot ( "vst" , (CellParser_t*)vstParser , "vhd" );
//registerSlot ( "vst" , (CellParser_t*)vstParser , "vhdl" ); //registerSlot ( "vst" , (CellParser_t*)vstParser , "vhdl" );
registerSlot ( "spi" , (CellParser_t*)spiceParser , "spi" ); //registerSlot ( "spi" , (CellParser_t*)spiceParser , "spi" );
registerSlot ( "oa" , (CellParser_t*)OpenAccess::oaCellParser , "oa" ); registerSlot ( "oa" , (CellParser_t*)OpenAccess::oaCellParser , "oa" );
//registerSlot ( "oa" , (LibraryParser_t*)OpenAccess::oaLibParser, "oa" ); //registerSlot ( "oa" , (LibraryParser_t*)OpenAccess::oaLibParser, "oa" );
} }
@ -283,7 +283,7 @@ namespace CRL {
registerSlot ( "ap" , (CellDriver_t*)apDriver , "ap" ); registerSlot ( "ap" , (CellDriver_t*)apDriver , "ap" );
registerSlot ( "vst", (CellDriver_t*)vstDriver , "vst" ); registerSlot ( "vst", (CellDriver_t*)vstDriver , "vst" );
//registerSlot ( "def", (CellDriver_t*)defDriver , "def" ); //registerSlot ( "def", (CellDriver_t*)defDriver , "def" );
registerSlot ( "spi", (CellDriver_t*)spiceDriver , "spi" ); //registerSlot ( "spi", (CellDriver_t*)spiceDriver , "spi" );
//registerSlot ( "oa" , (CellDriver_t*)OpenAccess::oaDriver, "oa"); //registerSlot ( "oa" , (CellDriver_t*)OpenAccess::oaDriver, "oa");
} }