##// END OF EJS Templates
Added Polygon drawing but huge perf issue, to be solved.
Added Polygon drawing but huge perf issue, to be solved.

File last commit:

r14:72560b13551a default
r14:72560b13551a default
Show More
PCBView.pro
44 lines | 848 B | text/idl | PrologLexer
PCB Viewer is working but still WIP.
r7 #-------------------------------------------------
#
# Project created by QtCreator 2015-06-11T21:37:25
#
#-------------------------------------------------
QT += core gui opengl
CONFIG += qilib
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = PCBView
TEMPLATE = app
MOC_DIR = moc
RCC_DIR = resources
OBJECTS_DIR = obj
DESTDIR = ../../bin
Really fixed build!
r9 INCLUDEPATH += $$top_builddir/../../qilib \
$$top_srcdir/../../qilib
PCB Viewer is working but still WIP.
r7
LIBS += -L../../bin -lQIlib
SOURCES += main.cpp\
mainwindow.cpp \
pcbgraphicview.cpp \
pcbmodule.cpp \
pcbline.cpp \
pcbcontext.cpp \
Added Polygon drawing but huge perf issue, to be solved.
r14 pcbvia.cpp \
pcbpad.cpp \
pcbzone.cpp
PCB Viewer is working but still WIP.
r7
HEADERS += mainwindow.h \
pcbgraphicview.h \
pcbmodule.h \
pcbline.h \
pcbcontext.h \
Added Polygon drawing but huge perf issue, to be solved.
r14 pcbvia.h \
pcbpad.h \
pcbzone.h
PCB Viewer is working but still WIP.
r7
FORMS += mainwindow.ui