-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathqtcam.pro
More file actions
67 lines (59 loc) · 1.4 KB
/
qtcam.pro
File metadata and controls
67 lines (59 loc) · 1.4 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#-------------------------------------------------
#
# Project created by QtCreator 2013-11-01T15:35:32
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = qtcam
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
src/dl_writer_ascii.cpp \
src/dl_dxf.cpp \
circleread.cpp \
hole.cpp \
dxfview.cpp \
qextserialbase.cpp \
posix_qextserialport.cpp \
message.cpp \
pages.cpp \
configdialog.cpp \
settingobject.cpp \
common.cpp \
gcodeparse.cpp \
gcodeedit.cpp
HEADERS += mainwindow.h \
src/dl_writer_ascii.h \
src/dl_writer.h \
src/dl_extrusion.h \
src/dl_exception.h \
src/dl_entities.h \
src/dl_dxf.h \
src/dl_creationinterface.h \
src/dl_creationadapter.h \
src/dl_codes.h \
src/dl_attributes.h \
circleread.h \
hole.h \
dxfview.h \
qextserialbase.h \
posix_qextserialport.h \
message.h \
itemtypes.h \
pages.h \
configdialog.h \
settingobject.h \
common.h \
gcodeedit.h \
gcodeparse.h
OTHER_FILES += \
src/dl_writer_ascii.o \
src/dl_dxf.o
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro images
#unix:!macx: LIBS += -L$$PWD/ -ldxflib
LIBS += $$PWD/libdxflib.a
INCLUDEPATH += $$PWD/
DEPENDPATH += $$PWD/
INCLUDEPATH += src/
unix:!macx: PRE_TARGETDEPS += $$PWD/libdxflib.a