-
Notifications
You must be signed in to change notification settings - Fork 0
/
chip8-qt.pro
81 lines (69 loc) · 2.31 KB
/
chip8-qt.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TEMPLATE = app
TARGET = chip8-qt
DESTDIR = $$PWD/bin
HEADERS += SDL2Widget.h \
c8asm/assembler.h \
c8asm/comphelpers.h \
c8asm/parser.h \
c8asm/types.h \
c8dasm/c8dasm.h \
c8dasm/disassembler.h \
chip8.h \
debugger.h \
hexview/document/buffer/qfilebuffer.h \
hexview/document/buffer/qhexbuffer.h \
hexview/document/buffer/qmemorybuffer.h \
hexview/document/buffer/qmemoryrefbuffer.h \
hexview/document/commands/hexcommand.h \
hexview/document/commands/insertcommand.h \
hexview/document/commands/removecommand.h \
hexview/document/commands/replacecommand.h \
hexview/document/qhexcursor.h \
hexview/document/qhexdocument.h \
hexview/document/qhexmetadata.h \
hexview/document/qhexrenderer.h \
hexview/qhexview.h \
mainwindow.h \
settings.h
SOURCES += main.cpp \
SDL2Widget.cpp \
c8asm/arithm.cpp \
c8asm/assembler.cpp \
c8asm/jump.cpp \
c8asm/load.cpp \
c8asm/logic.cpp \
c8asm/misc.cpp \
c8asm/parser.cpp \
c8dasm/c8dasm.cpp \
c8dasm/disassembler.cpp \
chip8.cpp \
debugger.cpp \
hexview/document/buffer/qfilebuffer.cpp \
hexview/document/buffer/qhexbuffer.cpp \
hexview/document/buffer/qmemorybuffer.cpp \
hexview/document/buffer/qmemoryrefbuffer.cpp \
hexview/document/commands/hexcommand.cpp \
hexview/document/commands/insertcommand.cpp \
hexview/document/commands/removecommand.cpp \
hexview/document/commands/replacecommand.cpp \
hexview/document/qhexcursor.cpp \
hexview/document/qhexdocument.cpp \
hexview/document/qhexmetadata.cpp \
hexview/document/qhexrenderer.cpp \
hexview/qhexview.cpp \
mainwindow.cpp \
settings.cpp
LIBS += -L$$PWD/ThirdParty/lib/ -lSDL2
INCLUDEPATH += $$PWD/ThirdParty/include/SDL2
DEPENDPATH += $$PWD/ThirdParty/include/SDL2
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
FORMS += \
debugger.ui \
mainwindow.ui \
settings.ui
RESOURCES +=
TRANSLATIONS = chip8-qt_eu.ts