You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @ 16445039 and Dev-PerfTest @ 16444526 [CL 16488106 by aurel cordonnier in ue5-main branch]
18 lines
333 B
Bash
Executable File
18 lines
333 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright Epic Games, Inc. All Rights Reserved.
|
|
#
|
|
# Simple shell file to build mcpp on macOS systems
|
|
|
|
cd "`dirname "$0"`"
|
|
cd ./mcpp-2.7.2
|
|
|
|
export CFLAGS='-mmacosx-version-min=10.9 -arch x86_64 -arch arm64 -gdwarf-2'
|
|
|
|
./configure --enable-mcpplib --enable-static
|
|
|
|
make
|
|
|
|
cp -f ./src/.libs/libmcpp.a ./lib/Mac
|
|
|
|
unset CFLAGS
|