cmake: Detect features at compile time
Instead of relying on manually passed down flags from CMake, we now have ppsspp_config.h file to create the platform defines for us. This improves support for multiplatform builds (such as iOS).
This commit is contained in:
parent
912a58d6c8
commit
8c3552de74
70 changed files with 502 additions and 261 deletions
|
@ -15,6 +15,9 @@
|
|||
// Official git repository and contact information can be found at
|
||||
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
||||
|
||||
#include "ppsspp_config.h"
|
||||
#if PPSSPP_ARCH(ARM64)
|
||||
|
||||
// This allows highlighting to work. Yay.
|
||||
#ifdef __INTELLISENSE__
|
||||
#define ARM64
|
||||
|
@ -783,3 +786,5 @@ void VertexDecoderJitCache::Jit_WriteMatrixMul(int outOff, bool pos) {
|
|||
}
|
||||
fp.STUR(128, accNEON, dstReg, outOff);
|
||||
}
|
||||
|
||||
#endif // PPSSPP_ARCH(ARM64)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue