mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-01 04:25:31 +02:00
Always deep-sign Steam target
This commit is contained in:
parent
57f83fd73c
commit
61a6f646eb
3 changed files with 6 additions and 2 deletions
|
@ -29,6 +29,7 @@ This binding should support RGSS1, RGSS2 and RGSS3. Note that I've only tested t
|
|||
* pixman
|
||||
* zlib
|
||||
* openssl (for HTTPS, optional)
|
||||
* Steamworks SDK (for Steam, optional)
|
||||
* OpenGL/ES
|
||||
|
||||
mkxp-z employs the meson build system, so you'll need to install that beforehand.
|
||||
|
|
|
@ -2617,7 +2617,7 @@
|
|||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
OTHER_CODE_SIGN_FLAGS = "--ignore-resources --deep";
|
||||
OTHER_CODE_SIGN_FLAGS = "--deep";
|
||||
OTHER_LDFLAGS = "";
|
||||
PRODUCT_NAME = Z.steam;
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
|
@ -2692,7 +2692,7 @@
|
|||
MKXPZ_EXECUTABLE_NAME = shim;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
OTHER_CODE_SIGN_FLAGS = "--ignore-resources --deep";
|
||||
OTHER_CODE_SIGN_FLAGS = "--deep";
|
||||
OTHER_LDFLAGS = "";
|
||||
PRODUCT_NAME = Z.steam;
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
|
|
|
@ -23,7 +23,10 @@ typedef int PipeType;
|
|||
#endif
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include "steamshim_mac_helpers.h"
|
||||
#endif
|
||||
|
||||
#include "steam/steam_api_flat.h"
|
||||
|
||||
#ifdef STEAMSHIM_DEBUG
|
||||
|
|
Loading…
Add table
Reference in a new issue