forked from malichao/GerberCAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GerberCAM.pro
52 lines (42 loc) · 1.12 KB
/
GerberCAM.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#-------------------------------------------------
#
# Project created by QtCreator 2016-01-30T18:52:57
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = GerberCAM1
TEMPLATE = app
SOURCES += main.cpp\
source/aboutwindow.cpp \
source/calculation.cpp \
source/clipper.cpp \
source/drawPCB.cpp \
source/gerber.cpp \
source/mainwindow.cpp \
source/preprocess.cpp \
source/setting.cpp \
source/settingwindow.cpp \
source/toolpath.cpp \
source/treeitem.cpp \
source/treemodel.cpp \
HEADERS +=source/aboutwindow.h \
source/calculation.h \
source/drawPCB.h \
source/gerber.h \
source/mainwindow.h \
source/preprocess.h \
source/Read me.h \
source/setting.h \
source/settingwindow.h \
source/toolpath.h \
source/treeitem.h \
source/treemodel.h \
source/clipper.hpp
FORMS += mainwindow.ui \
settingwindow.ui \
aboutwindow.ui \
aboutwindow.ui
RESOURCES += \
resources.qrc
INCLUDEPATH += $$PWD/source