~ppsspp/ppsspp/ppsspp-1.2.2

« back to all changes in this revision

Viewing changes to Qt/Core.pro

  • Committer: Sérgio Benjamim
  • Date: 2016-04-25 02:30:18 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20160425023018-wk3rd7nu30fejjzz
1.2.2 source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
QT -= gui
 
2
TARGET = Core
 
3
TEMPLATE = lib
 
4
CONFIG += staticlib
 
5
 
 
6
include(Settings.pri)
 
7
 
 
8
INCLUDEPATH += $$P/ $$P/ext/native $$P/Core/MIPS $$P/ext/xbrz
 
9
!exists( /usr/include/GL/glew.h ) {
 
10
        !contains(DEFINES, USING_GLES2): INCLUDEPATH += $$P/ext/native/ext/glew
 
11
}
 
12
 
 
13
arm {
 
14
        SOURCES += $$P/Core/MIPS/ARM/*.cpp #CoreARM
 
15
        HEADERS += $$P/Core/MIPS/ARM/*.h
 
16
}
 
17
else:i86 {
 
18
        SOURCES += $$P/Core/MIPS/x86/*.cpp
 
19
        HEADERS += $$P/Core/MIPS/x86/*.h
 
20
}
 
21
else:mips {
 
22
        SOURCES += $$P/Core/MIPS/MIPS/*.cpp
 
23
        HEADERS += $$P/Core/MIPS/MIPS/*.h
 
24
}
 
25
else {
 
26
        SOURCES += $$P/Core/MIPS/fake/*.cpp
 
27
        HEADERS += $$P/Core/MIPS/fake/*.h
 
28
}
 
29
SOURCES += $$P/ext/disarm.cpp
 
30
 
 
31
SOURCES += $$P/Core/*.cpp \ # Core
 
32
        $$P/Core/Debugger/*.cpp \
 
33
        $$P/Core/Dialog/*.cpp \
 
34
        $$P/Core/ELF/*.cpp \
 
35
        $$P/Core/FileLoaders/*.cpp \
 
36
        $$P/Core/FileSystems/*.cpp \
 
37
        $$P/Core/Font/*.cpp \
 
38
        $$P/Core/HLE/*.cpp \
 
39
        $$P/Core/HW/*.cpp \
 
40
        $$P/Core/MIPS/*.cpp \
 
41
        $$P/Core/MIPS/JitCommon/*.cpp \
 
42
        $$P/Core/Util/AudioFormat.cpp \
 
43
        $$P/Core/Util/BlockAllocator.cpp \
 
44
        $$P/Core/Util/GameManager.cpp \
 
45
        $$P/Core/Util/ppge_atlas.cpp \
 
46
        $$P/Core/Util/PPGeDraw.cpp \
 
47
        $$P/ext/libkirk/*.c \ # Kirk
 
48
        $$P/ext/sfmt19937/*.c
 
49
 
 
50
HEADERS += $$P/Core/*.h \
 
51
        $$P/Core/Debugger/*.h \
 
52
        $$P/Core/Dialog/*.h \
 
53
        $$P/Core/ELF/*.h \
 
54
        $$P/Core/FileSystems/*.h \
 
55
        $$P/Core/Font/*.h \
 
56
        $$P/Core/HLE/*.h \
 
57
        $$P/Core/HW/*.h \
 
58
        $$P/Core/MIPS/*.h \
 
59
        $$P/Core/MIPS/JitCommon/*.h \
 
60
        $$P/Core/Util/AudioFormat.h \
 
61
        $$P/Core/Util/BlockAllocator.h \
 
62
        $$P/Core/Util/GameManager.h \
 
63
        $$P/Core/Util/ppge_atlas.h \
 
64
        $$P/Core/Util/PPGeDraw.h \
 
65
        $$P/ext/libkirk/*.h \
 
66
        $$P/ext/sfmt19937/*.h
 
67
 
 
68
armv7: SOURCES += $$P/Core/Util/AudioFormatNEON.cpp
 
69
 
 
70
win32: INCLUDEPATH += $$P/ffmpeg/WindowsInclude