aboutsummaryrefslogtreecommitdiff
path: root/qtmips_machine/qtmips_machine.pro
blob: 213727d11072196bc8e1409b5edcf66fa7e9e939 (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
38
39
40
41
42
43
44
QT -= gui

TARGET = qtmips_machine
CONFIG += c++11

TEMPLATE = lib

LIBS += -lelf
QMAKE_CXXFLAGS += -std=c++0x

DEFINES += QTMIPS_MACHINE_LIBRARY
DEFINES += QT_DEPRECATED_WARNINGS

SOURCES += \
    qtmipsmachine.cpp \
    qtmipsexception.cpp \
    core.cpp \
    memory.cpp \
    instruction.cpp \
    registers.cpp \
    programloader.cpp \
    programmemory.cpp \
    instructions/arithmetic.cpp \
    instructions/loadstore.cpp \
    instructions/shift.cpp \
    instructions/nop.cpp \
    instructions/jumpbranch.cpp \
    cache.cpp

HEADERS += \
    qtmipsmachine.h \
    qtmipsexception.h \
    core.h \
    memory.h \
    instruction.h \
    registers.h \
    programloader.h \
    programmemory.h \
    instructions/arithmetic.h \
    instructions/loadstore.h \
    instructions/shift.h \
    instructions/nop.h \
    instructions/jumpbranch.h \
    cache.h