~ppsspp/ppsspp/ppsspp_1.3.0

« back to all changes in this revision

Viewing changes to ext/armips/CMakeLists.txt

  • Committer: Sérgio Benjamim
  • Date: 2017-01-02 00:12:05 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20170102001205-cxbta9za203nmjwm
1.3.0 source (from ppsspp_1.3.0-r160.p5.l1762.a165.t83~56~ubuntu16.04.1.tar.xz).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
cmake_minimum_required(VERSION 2.8)
 
2
project(armips) 
 
3
 
 
4
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -std=c++11")
 
5
 
 
6
include_directories(.)
 
7
 
 
8
add_executable(armips
 
9
        Main/main.cpp
 
10
        Main/Tests.cpp
 
11
        Main/Tests.h
 
12
        stdafx.cpp
 
13
        stdafx.h
 
14
 
 
15
        Util/ByteArray.cpp
 
16
        Util/ByteArray.h
 
17
        Util/CRC.cpp
 
18
        Util/CRC.h
 
19
        Util/EncodingTable.cpp
 
20
        Util/EncodingTable.h
 
21
        Util/FileClasses.cpp
 
22
        Util/FileClasses.h
 
23
        Util/Util.cpp
 
24
        Util/Util.h
 
25
        
 
26
        Core/ELF/ElfTypes.h
 
27
        Core/ELF/ElfRelocator.cpp
 
28
        Core/ELF/ElfRelocator.h
 
29
        Core/ELF/ElfFile.cpp
 
30
        Core/ELF/ElfFile.h
 
31
        Core/Assembler.cpp
 
32
        Core/Assembler.h
 
33
        Core/Common.cpp
 
34
        Core/Common.h
 
35
        Core/Expression.cpp
 
36
        Core/Expression.h
 
37
        Core/ExpressionFunctions.cpp
 
38
        Core/ExpressionFunctions.h
 
39
        Core/FileManager.cpp
 
40
        Core/FileManager.h
 
41
        Core/Misc.cpp
 
42
        Core/Misc.h
 
43
        Core/SymbolData.cpp
 
44
        Core/SymbolData.h
 
45
        Core/SymbolTable.cpp
 
46
        Core/SymbolTable.h
 
47
        
 
48
        Commands/CAssemblerCommand.cpp
 
49
        Commands/CAssemblerCommand.h
 
50
        Commands/CAssemblerLabel.cpp
 
51
        Commands/CAssemblerLabel.h
 
52
        Commands/CDirectiveArea.cpp
 
53
        Commands/CDirectiveArea.h
 
54
        Commands/CDirectiveConditional.cpp
 
55
        Commands/CDirectiveConditional.h
 
56
        Commands/CDirectiveData.cpp
 
57
        Commands/CDirectiveData.h
 
58
        Commands/CDirectiveFile.cpp
 
59
        Commands/CDirectiveFile.h
 
60
        Commands/CDirectiveMessage.cpp
 
61
        Commands/CDirectiveMessage.h
 
62
        Commands/CommandSequence.cpp
 
63
        Commands/CommandSequence.h
 
64
 
 
65
        Archs/Architecture.h
 
66
        Archs/Architecture.cpp
 
67
 
 
68
        Archs/ARM/Arm.cpp
 
69
        Archs/ARM/Arm.h
 
70
        Archs/ARM/ArmOpcodes.cpp
 
71
        Archs/ARM/ArmOpcodes.h
 
72
        Archs/ARM/ArmParser.cpp
 
73
        Archs/ARM/ArmParser.h
 
74
        Archs/ARM/ArmRelocator.cpp
 
75
        Archs/ARM/ArmRelocator.h
 
76
        Archs/ARM/CArmInstruction.cpp
 
77
        Archs/ARM/CArmInstruction.h
 
78
        Archs/ARM/CThumbInstruction.cpp
 
79
        Archs/ARM/CThumbInstruction.h
 
80
        Archs/ARM/Pool.cpp
 
81
        Archs/ARM/Pool.h
 
82
        Archs/ARM/ThumbOpcodes.cpp
 
83
        Archs/ARM/ThumbOpcodes.h
 
84
 
 
85
        Archs/MIPS/CMipsInstruction.cpp
 
86
        Archs/MIPS/CMipsInstruction.h
 
87
        Archs/MIPS/Mips.cpp
 
88
        Archs/MIPS/Mips.h
 
89
        Archs/MIPS/MipsElfFile.cpp
 
90
        Archs/MIPS/MipsElfFile.h
 
91
        Archs/MIPS/MipsMacros.cpp
 
92
        Archs/MIPS/MipsMacros.h
 
93
        Archs/MIPS/MipsOpcodes.cpp
 
94
        Archs/MIPS/MipsOpcodes.h
 
95
        Archs/MIPS/MipsParser.cpp
 
96
        Archs/MIPS/MipsParser.h
 
97
        Archs/MIPS/PsxRelocator.cpp
 
98
        Archs/MIPS/PsxRelocator.h
 
99
        
 
100
        Parser/DirectivesParser.cpp
 
101
        Parser/DirectivesParser.h
 
102
        Parser/ExpressionParser.cpp
 
103
        Parser/ExpressionParser.h
 
104
        Parser/Parser.cpp
 
105
        Parser/Parser.h
 
106
        Parser/Tokenizer.cpp
 
107
        Parser/Tokenizer.h
 
108
        
 
109
        ext/tinyformat/tinyformat.h
 
110
)