-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathviogsf.pro
More file actions
49 lines (45 loc) · 1.07 KB
/
viogsf.pro
File metadata and controls
49 lines (45 loc) · 1.07 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
#-------------------------------------------------
#
# Project created by QtCreator 2013-01-21T15:49:05
#
#-------------------------------------------------
QT -= core gui
TARGET = viogsf
TEMPLATE = lib
CONFIG += staticlib
SOURCES += \
vbam/apu/Multi_Buffer.cpp \
vbam/apu/Gb_Oscs.cpp \
vbam/apu/Gb_Apu.cpp \
vbam/apu/Effects_Buffer.cpp \
vbam/apu/Blip_Buffer.cpp \
vbam/gba/Sound.cpp \
vbam/gba/GBA.cpp \
vbam/gba/GBA-thumb.cpp \
vbam/gba/GBA-arm.cpp \
vbam/gba/bios.cpp
HEADERS += \
vbam/apu/Multi_Buffer.h \
vbam/apu/Gb_Oscs.h \
vbam/apu/Gb_Apu.h \
vbam/apu/Effects_Buffer.h \
vbam/apu/Blip_Buffer.h \
vbam/apu/blargg_source.h \
vbam/apu/blargg_config.h \
vbam/apu/blargg_common.h \
vbam/common/Types.h \
vbam/common/Port.h \
vbam/gba/Sound.h \
vbam/gba/Globals.h \
vbam/gba/GBAinline.h \
vbam/gba/GBAcpu.h \
vbam/gba/GBA.h \
vbam/gba/bios.h
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}