aboutsummaryrefslogtreecommitdiff
path: root/qtmips_machine/qtmips_machine.pro
blob: e138fef7fead4932009ac89255c9f3be8ebd2491 (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
45
46
47
48
49
50
51
52
53
54
55
QT -= gui

TARGET = qtmips_machine
CONFIG += c++11

TEMPLATE = lib
CONFIG += staticlib

LIBS += -lelf
QMAKE_CXXFLAGS += -std=c++0x
QMAKE_CXXFLAGS_DEBUG += -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 \
    utils.cpp \
    physaddrspace.cpp \
    peripheral.cpp \
    serialport.cpp \
    peripspiled.cpp \
    lcddisplay.cpp \
    symboltable.cpp \
    cop0state.cpp

HEADERS += \
    qtmipsmachine.h \
    qtmipsexception.h \
    core.h \
    memory.h \
    instruction.h \
    registers.h \
    programloader.h \
    cache.h \
    alu.h \
    machineconfig.h \
    utils.h \
    machinedefs.h \
    physaddrspace.h \
    peripheral.h \
    serialport.h \
    peripspiled.h \
    lcddisplay.h \
    symboltable.h \
    cop0state.h