summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/CMakeLists.txt')
-rw-r--r--src/shader_recompiler/CMakeLists.txt14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/shader_recompiler/CMakeLists.txt b/src/shader_recompiler/CMakeLists.txt
index 72d5f41d2..248e90d4b 100644
--- a/src/shader_recompiler/CMakeLists.txt
+++ b/src/shader_recompiler/CMakeLists.txt
@@ -1,4 +1,5 @@
1add_executable(shader_recompiler 1add_executable(shader_recompiler
2 backend/spirv/emit_spirv.h
2 environment.h 3 environment.h
3 exception.h 4 exception.h
4 file_environment.cpp 5 file_environment.cpp
@@ -17,10 +18,12 @@ add_executable(shader_recompiler
17 frontend/ir/ir_emitter.h 18 frontend/ir/ir_emitter.h
18 frontend/ir/microinstruction.cpp 19 frontend/ir/microinstruction.cpp
19 frontend/ir/microinstruction.h 20 frontend/ir/microinstruction.h
20 frontend/ir/opcode.cpp 21 frontend/ir/opcodes.cpp
21 frontend/ir/opcode.h 22 frontend/ir/opcodes.h
22 frontend/ir/opcode.inc 23 frontend/ir/opcodes.inc
23 frontend/ir/pred.h 24 frontend/ir/pred.h
25 frontend/ir/program.cpp
26 frontend/ir/program.h
24 frontend/ir/reg.h 27 frontend/ir/reg.h
25 frontend/ir/type.cpp 28 frontend/ir/type.cpp
26 frontend/ir/type.h 29 frontend/ir/type.h
@@ -33,8 +36,8 @@ add_executable(shader_recompiler
33 frontend/maxwell/instruction.h 36 frontend/maxwell/instruction.h
34 frontend/maxwell/location.h 37 frontend/maxwell/location.h
35 frontend/maxwell/maxwell.inc 38 frontend/maxwell/maxwell.inc
36 frontend/maxwell/opcode.cpp 39 frontend/maxwell/opcodes.cpp
37 frontend/maxwell/opcode.h 40 frontend/maxwell/opcodes.h
38 frontend/maxwell/program.cpp 41 frontend/maxwell/program.cpp
39 frontend/maxwell/program.h 42 frontend/maxwell/program.h
40 frontend/maxwell/termination_code.cpp 43 frontend/maxwell/termination_code.cpp
@@ -67,6 +70,7 @@ add_executable(shader_recompiler
67 ir_opt/ssa_rewrite_pass.cpp 70 ir_opt/ssa_rewrite_pass.cpp
68 ir_opt/verification_pass.cpp 71 ir_opt/verification_pass.cpp
69 main.cpp 72 main.cpp
73 object_pool.h
70) 74)
71target_link_libraries(shader_recompiler PRIVATE fmt::fmt) 75target_link_libraries(shader_recompiler PRIVATE fmt::fmt)
72 76