-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChip8_Emulator.pro
More file actions
52 lines (40 loc) · 1.08 KB
/
Chip8_Emulator.pro
File metadata and controls
52 lines (40 loc) · 1.08 KB
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
TEMPLATE = app
QT += qml quick
CONFIG += c++11
CONFIG(debug, debug|release) {
win32 {
OBJECTS_DIR = ../bin/Win32/obj/Debug/
MOC_DIR = ../bin/Win32/moc/Debug/
DESTDIR = ../bin/Win32/exe/Debug/
}
unix {
OBJECTS_DIR = ../bin/unix/obj/Debug/
MOC_DIR = ../bin/unix/moc/Debug/
DESTDIR = ../bin/unix/exe/Debug/
}
}
CONFIG(release, debug|release) {
win32 {
OBJECTS_DIR = ../bin/Win32/obj/Release/
MOC_DIR = ../bin/Win32/moc/Release/
DESTDIR = ../bin/Win32/exe/Release/
}
unix {
OBJECTS_DIR = ../bin/unix/obj/Release/
MOC_DIR = ../bin/unix/moc/Release/
DESTDIR = ../bin/unix/exe/Release/
}
}
SOURCES += main.cpp \
Chip8.cpp \
Chip8Screen.cpp \
Chip8ScreenProvider.cpp
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
HEADERS += \
Chip8.h \
Chip8Screen.h \
Chip8ScreenProvider.h