##// END OF EJS Templates
Improved Polygon rendering by splittig them into lower complexity polygons.
Improved Polygon rendering by splittig them into lower complexity polygons.

File last commit:

r15:4df93d51b13e default
r15:4df93d51b13e default
Show More
PCBView.pro
46 lines | 930 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 \
Improved Polygon rendering by splittig them into lower complexity polygons.
r15 pcbzone.cpp \
polypartition/src/polypartition.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 \
Improved Polygon rendering by splittig them into lower complexity polygons.
r15 pcbzone.h \
polypartition/src/polypartition.h
PCB Viewer is working but still WIP.
r7
FORMS += mainwindow.ui