-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhackassemblereditor.pro
More file actions
40 lines (33 loc) · 950 Bytes
/
Copy pathhackassemblereditor.pro
File metadata and controls
40 lines (33 loc) · 950 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2016-09-01T00:58:43
#
#-------------------------------------------------
QT += core gui widgets
QMAKE_CXXFLAGS += -std=c++11
QMAKE_CXXFLAGS += -std=gnu++11
TARGET = hackassemblereditor
TEMPLATE = app
SOURCES += main.cpp \
hackassembler/assembler.cpp \
hackassembler/code.cpp \
hackassembler/parser.cpp \
hackassembler/symboltable.cpp \
helpers/assemblercontroller.cpp \
helpers/hacksyntaxhighlighter.cpp \
ui/aboutdialog.cpp \
ui/hackassemblereditor.cpp
HEADERS += \
hackassembler/assembler.h \
hackassembler/code.h \
hackassembler/parser.h \
hackassembler/symboltable.h \
helpers/assemblercontroller.h \
helpers/hacksyntaxhighlighter.h \
ui/aboutdialog.h \
ui/hackassemblereditor.h
FORMS += \
ui/aboutdialog.ui \
ui/hackassemblereditor.ui
RESOURCES += \
hackassemblereditor.qrc