blob: ff5cc3fcc95227dff0535b552bb87405bd6f9b7d (
plain)
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
|
QT -= gui
TARGET = qtmips_machine
CONFIG += c++11
TEMPLATE = lib
LIBS += -lelf
QMAKE_CXXFLAGS += -std=c++0x
QMAKE_CXXFLAGS += -ggdb
DEFINES += QTMIPS_MACHINE_LIBRARY
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
qtmipsmachine.cpp \
qtmipsexception.cpp \
core.cpp \
memory.cpp \
instruction.cpp \
registers.cpp \
programloader.cpp \
cache.cpp \
alu.cpp \
machineconfig.cpp
HEADERS += \
qtmipsmachine.h \
qtmipsexception.h \
core.h \
memory.h \
instruction.h \
registers.h \
programloader.h \
cache.h \
alu.h \
machineconfig.h
|