mirror of
https://github.com/mupen64plus-ae/parallel-rsp.git
synced 2024-11-23 05:29:39 +00:00
Refactor some header names to avoid awkward collisions.
This commit is contained in:
parent
36cd023e59
commit
ef55158ac0
@ -20,7 +20,7 @@ add_library(parallel-rsp STATIC
|
||||
rsp/cp0.cpp rsp/cp2.cpp
|
||||
arch/x86_64/rsp/rsp_core.cpp
|
||||
arch/x86_64/rsp/clamp.h
|
||||
arch/x86_64/rsp/rsp.h
|
||||
arch/x86_64/rsp/rsp_common.h
|
||||
arch/x86_64/rsp/SSE2NEON.h
|
||||
arch/x86_64/rsp/rsp_impl.h
|
||||
arch/x86_64/rsp/vcr.h
|
||||
@ -55,7 +55,7 @@ if (PARALLEL_RSP_DEBUG_JIT)
|
||||
if (ANDROID)
|
||||
message("Android does not support debug JIT. Disabling it.")
|
||||
else()
|
||||
target_sources(parallel-rsp PRIVATE rsp.cpp rsp.hpp debug_jit.cpp debug_jit.hpp)
|
||||
target_sources(parallel-rsp PRIVATE debug_rsp.cpp debug_rsp.hpp debug_jit.cpp debug_jit.hpp)
|
||||
target_compile_definitions(parallel-rsp PUBLIC PARALLEL_RSP_DEBUG_JIT)
|
||||
endif()
|
||||
endif()
|
||||
|
@ -8,7 +8,7 @@
|
||||
//
|
||||
|
||||
#include "../../../state.hpp"
|
||||
#include "rsp.h"
|
||||
#include "rsp_common.h"
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __SSSE3__
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "rsp.hpp"
|
||||
#include "debug_rsp.hpp"
|
||||
#include "rsp_disasm.hpp"
|
||||
#include <utility>
|
||||
|
2
main.cpp
2
main.cpp
@ -1,5 +1,5 @@
|
||||
#ifdef PARALLEL_RSP_DEBUG_JIT
|
||||
#include "rsp.hpp"
|
||||
#include "debug_rsp.hpp"
|
||||
#endif
|
||||
#include "rsp_jit.hpp"
|
||||
#include <stdio.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifdef DEBUG_JIT
|
||||
#include "rsp.hpp"
|
||||
#include "debug_rsp.hpp"
|
||||
#else
|
||||
#include "rsp_jit.hpp"
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user