##// END OF EJS Templates
Netlist parsing and loading ok, get in memory abstract syntax tree and concrete...
Netlist parsing and loading ok, get in memory abstract syntax tree and concrete tree mapping. Next step -> PCB file parsing and loading.

File last commit:

r0:bd5e6825bd26 default
r2:096591f9de09 default
Show More
qilib.pro
64 lines | 1.3 KiB | text/idl | PrologLexer
#==================================================
#
# _|_| _|_|_| _| _| _|
# _| _| _| _| _|_|_|
# _| _|_| _| _| _| _| _|
# _| _| _| _| _| _| _|
# _|_| _| _|_|_| _| _| _|_|_|
#
#==================================================
#
#
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QIlib
TEMPLATE = lib
LIBS += -lfl
MOC_DIR = moc
RCC_DIR = resources
OBJECTS_DIR = obj
DESTDIR = lib
include ( ./parsers/Flex_Bison_FIles/Flex_Bison_FIles.pri )
qilibcfg.path = $$[QT_INSTALL_PREFIX]/mkspecs/features
qilibcfg.files = \
qilib.prf
target.path = $$[QT_INSTALL_LIBS]
qilibHeaders.path = $$[QT_INSTALL_HEADERS]/QIlib
qilibHeaders.files = \
qicadnetlist.h \
qicadnet.h \
qilibParsersHeaders.path = $$[QT_INSTALL_HEADERS]/QIlib/parsers
qilibParsersHeaders.files = \
parsers/lispLike_driver.h \
parsers/lispLike_scanner.h
INSTALLS += target qilibHeaders qilibParsersHeaders qilibcfg
INCLUDEPATH += ./parsers
SOURCES += \
qicadnetlist.cpp \
qicadnet.cpp \
parsers/lispLike_driver.cpp \
parsers/lispLike_scanner.cpp
HEADERS += \
qicadnetlist.h \
qicadnet.h \
parsers/lispLike_driver.h \
parsers/lispLike_scanner.h
OTHER_FILES += qilib.prf