Always deep-sign Steam target

This commit is contained in:
Roza 2021-01-03 03:19:27 -05:00
parent 57f83fd73c
commit 61a6f646eb
3 changed files with 6 additions and 2 deletions

View file

@ -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.

View file

@ -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 = "";

View file

@ -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